Changeset 20 for trunk/client/modules/Elezioni
- Timestamp:
- Feb 24, 2010, 1:01:47 PM (15 years ago)
- Location:
- trunk/client/modules/Elezioni
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/foto.php
r19 r20 47 47 48 48 // nessuno stemma immagine vuota 49 if ($stemma==""){ 50 51 $stemma = fread( fopen( 'images/vuoto.jpg', 'r' ), filesize( 'images/vuoto.jpg' ) ); 52 } 53 49 if ($stemma=="" && is_readable('modules/Elezioni/images/vuoto.jpg')){ 50 $stemma = fread( fopen( 'modules/Elezioni/images/vuoto.jpg', 'r' ), filesize( 'modules/Elezioni/images/vuoto.jpg' ) );} 54 51 echo $stemma; 55 52 ?> -
trunk/client/modules/Elezioni/gruppo.php
r17 r20 87 87 88 88 89 if (strstr( 'circo',$op)) { //$op=='gruppo_circo' or $op=='lista_circo') {89 if (strstr( $op,'circo')) { //$op=='gruppo_circo' or $op=='lista_circo') { 90 90 $tab1="circ"; 91 91 $tab2="t5.num_circ,t5.descrizione"; … … 102 102 $tipo3=_SEZIONE; 103 103 } 104 if (strstr( "gruppo",$op)){104 if (strstr( $op,"gruppo")){ 105 105 $tab="gruppo"; 106 }elseif (strstr( 'lista',$op)) {106 }elseif (strstr( $op,'lista')) { 107 107 $tab="lista"; 108 108 }else{ … … 157 157 $num_sez=$tot_sez;//mysql_data_seek($res_sez,0); 158 158 if ($circo) $offsetsez=$num_sez+$minsez-1;//setta offsetsez sull'ultima sezione della circoscrizione 159 if(strstr( "circo", $op)) {159 if(strstr( $op,"circo")) { 160 160 $res_sez = mysql_query("SELECT count(num_circ) from ".$prefix."_ele_circoscrizione where id_cons=$id_cons",$dbi); //estrae il numero delle circoscrizioni 161 161 list($num_sez)=mysql_fetch_row($res_sez); … … 178 178 */ 179 179 $visvot=''; 180 if(strstr( 'candidato', $op)){180 if(strstr( $op,'candidato')){ 181 181 // $numliste=mysql_num_rows($res_lis); 182 182 $visvot="cand"; … … 330 330 331 331 echo "<tr>"; 332 if (!strstr( 'candidato',$op)) {332 if (!strstr( $op,'candidato')) { 333 333 echo "<td>"._VIS_PERC.": <input type=\"checkbox\" name=\"perc\" value=\"true\""; 334 334 if($perc=='true') echo " checked=\"true\""; … … 351 351 352 352 # liste e gruppi da.... a 353 if (!strstr( 'candidato',$op)) {353 if (!strstr( $op,'candidato')) { 354 354 $res_cand2 = mysql_query("SELECT descrizione from ".$prefix."_ele_$tab15 where id_cons='$id_cons' and num_$tab15 ='$min'",$dbi); 355 355 list($descrizione)= mysql_fetch_row($res_cand2); … … 365 365 366 366 # nome della lista 367 if (strstr( 'candidato',$op)) {367 if (strstr( $op,'candidato')) { 368 368 $res_lis2 = mysql_query("SELECT num_lista, descrizione from ".$prefix."_ele_lista where id_lista=$id_lista",$dbi); 369 369 list($num_lista2,$descr_lista2)= mysql_fetch_row($res_lis2); … … 395 395 echo "</td></tr></table></div></form>"; 396 396 397 if (strstr( 'candidato',$op)) echo $list2;397 if (strstr( $op,'candidato')) echo $list2; 398 398 399 399
Note:
See TracChangeset
for help on using the changeset viewer.