Changeset 282 for trunk/client
- Timestamp:
- Apr 21, 2019, 9:46:30 PM (6 years ago)
- Location:
- trunk/client
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/menu.php
r265 r282 182 182 echo "<option value=\"gruppo_sezione\" ".$temp['gruppo_sezione'].">".substr(_GRUPPO." "._PER." "._SEZIONI,0,33)."</option>"; 183 183 } 184 if (!$votol and $fascia>$limite){ // si vota per la lista185 if ($genere>2) { 184 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 185 if ($genere>2) { 186 186 if (!$circo and $num_circ>1) 187 187 echo "<option value=\"lista_circo\" ".$temp['lista_circo']." >".substr(_LISTA." "._PER." "._CIRCO,0,33)."</option>"; -
trunk/client/modules/Elezioni/rss.php
r265 r282 160 160 161 161 162 $gruppinum= mysql_num_rows($res);162 $gruppinum=$res->fetch(PDO::FETCH_NUM); 163 163 $altrivoti=0; 164 164 while (list($id,$num,$descrizione,$voti) = $res->fetch(PDO::FETCH_NUM)){ -
trunk/client/temi/altro/menu.php
r265 r282 134 134 } 135 135 136 if (!$votol and $fascia>$limite){ // si vota per la lista136 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 137 137 if ($genere>2) { 138 138 if (!$circo and $num_circ>1) -
trunk/client/temi/blog/menu.php
r265 r282 133 133 } 134 134 135 if (!$votol and $fascia>$limite){ // si vota per la lista135 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 136 136 if ($genere>2) { 137 137 if (!$circo and $num_circ>1) -
trunk/client/temi/default/menu.php
r265 r282 134 134 } 135 135 136 if (!$votol and $fascia>$limite){ // si vota per la lista136 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 137 137 if ($genere>2) { 138 138 if (!$circo and $num_circ>1) -
trunk/client/temi/facebook/menu.php
r265 r282 156 156 } 157 157 158 if (!$votol and $fascia>$limite){ // si vota per la lista158 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 159 159 if ($genere>2) { 160 160 if (!$circo and $num_circ>1) -
trunk/client/temi/realistic/index.php
r241 r282 15 15 global $tema,$file,$sitename,$blocco,$dbi,$prefix,$id_comune; 16 16 17 $res = mysql_query("SELECT descrizione,simbolo FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ", $dbi); 18 list($descr_com,$simbolo) = mysql_fetch_row($res); 19 $descr_com =stripslashes($descr_com); 17 $sql="SELECT descrizione,simbolo FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "; 18 $res = $dbi->prepare("$sql"); 19 $res->execute(); 20 list($descr_com,$simbolo) = $res->fetch(PDO::FETCH_NUM); 21 $descr_com =stripslashes($descr_com); 20 22 21 23 -
trunk/client/temi/realistic/menu.php
r265 r282 146 146 } 147 147 148 if (!$votol and $fascia>$limite){ // si vota per la lista148 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 149 149 if ($genere>2) { 150 150 if (!$circo and $num_circ>1) -
trunk/client/temi/spectral/index.php
r241 r282 15 15 global $tema,$file,$sitename,$blocco,$dbi,$prefix,$id_comune,$descr_cons,$op; 16 16 17 $res = mysql_query("SELECT descrizione,simbolo FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ", $dbi); 18 list($descr_com,$simbolo) = mysql_fetch_row($res); 17 $sql="SELECT descrizione,simbolo FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "; 18 $res = $dbi->prepare("$sql"); 19 $res->execute(); 20 21 list($descr_com,$simbolo) = $res->fetch(PDO::FETCH_NUM); 19 22 $descr_com =stripslashes($descr_com); 20 23 … … 148 151 if($pos=="dx") $p=0; elseif($pos=="sx")$p=1;else $p=''; 149 152 150 $resblk = mysql_query("SELECT * FROM ".$prefix."_ele_widget where pos_or='$p' and attivo='1' order by pos_ver asc", $dbi); 151 if($resblk){ 153 $sql="SELECT * FROM ".$prefix."_ele_widget where pos_or='$p' and attivo='1' order by pos_ver asc"; 154 $resblk = $dbi->prepare("$sql"); 155 $resblk->execute(); 156 if($resblk->rowCount()){ 152 157 153 158 while ($row = mysql_fetch_array($resblk)) { -
trunk/client/temi/spectral/menu.php
r265 r282 146 146 } 147 147 148 if (!$votol and $fascia>$limite){ // si vota per la lista148 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 149 149 if ($genere>2) { 150 150 if (!$circo and $num_circ>1) -
trunk/client/temi/stylized/menu.php
r269 r282 134 134 } 135 135 136 if (!$votol and $fascia>$limite){ // si vota per la lista136 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 137 137 if ($genere>2) { 138 138 if (!$circo and $num_circ>1) -
trunk/client/temi/tour/index.php
r212 r282 61 61 if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); else $id_comune=$siteistat; 62 62 63 $res = mysql_query("SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ", $dbi); 64 list($descr_com) = mysql_fetch_row($res); 63 $sql="SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "; 64 $res = $dbi->prepare("$sql"); 65 $res->execute(); 66 list($descr_com) = $res->fetch(PDO::FETCH_NUM); 65 67 66 68 … … 163 165 // Blocco link 164 166 165 $result = mysql_query("select mid, title, preamble, content,editimage from ".$prefix."_ele_link where id_cons='$id_cons' order by mid ", $dbi); 166 if (mysql_num_rows($result) == 0) { 167 $sql="select mid, title, preamble, content,editimage from ".$prefix."_ele_link where id_cons='$id_cons' order by mid "; 168 $result = $dbi->prepare("$sql"); 169 $result->execute(); 170 if ($result->rowCount() == 0) { 167 171 //echo "</div></td></tr></table>"; 168 172 … … 171 175 } else { 172 176 echo "<h5>"._LINK."</h5><p>"; 173 while (list($mid, $title, $preamble,$content, $editimage) = mysql_fetch_row($result)) {177 while (list($mid, $title, $preamble,$content, $editimage) = $result->fetch(PDO::FETCH_NUM)) { 174 178 if ($title != "" && $content != "") { 175 179 $content = stripslashes($content); -
trunk/client/temi/tour/menu.php
r265 r282 133 133 } 134 134 135 if (!$votol and $fascia>$limite){ // si vota per la lista135 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 136 136 if ($genere>2) { 137 137 if (!$circo and $num_circ>1) -
trunk/client/temi/yellowblu/index.php
r139 r282 18 18 if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); else $id_comune=$siteistat; 19 19 20 $res = mysql_query("SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ", $dbi); 21 list($descr_com) = mysql_fetch_row($res); 20 $sql="SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' "; 21 $res = $dbi->prepare("$sql"); 22 $res->execute(); 23 list($descr_com) = $res->fetch(PDO::FETCH_NUM); 22 24 23 25 -
trunk/client/temi/yellowblu/menu.php
r265 r282 134 134 } 135 135 136 if (!$votol and $fascia>$limite){ // si vota per la lista136 if (!$votol and ($fascia>$limite || $limite==0)){ // si vota per la lista 137 137 if ($genere>2) { 138 138 if (!$circo and $num_circ>1)
Note:
See TracChangeset
for help on using the changeset viewer.