Changeset 84 for trunk/admin
- Timestamp:
- Jun 9, 2010, 8:04:31 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/ele_voti.php
r81 r84 23 23 $perms=ChiSei($id_cons_gen); 24 24 if ($perms<16 or !$id_cons_gen) die("Non hai i permessi per inserire dati, o non hai scelto la consultazione!"); 25 26 $res = mysql_query("SELECT tipo_cons FROM ".$prefix."_ele_consultazione where id_cons_gen='$id_cons_gen'" , $dbi);27 list($tipo_cons) = mysql_fetch_row($res);28 if ($tipo_cons!=3) $limite=0; #die ("limite: $limite");}29 25 if (isset($_GET['do'])) get_magic_quotes_gpc() ? $do=$param['do']:$do=addslashes($param['do']); else $do=''; 30 26 //if (isset($param['id_cons'])) $id_cons=intval($param['id_cons']); else $id_cons=''; … … 46 42 include("modules/Elezioni/funzionidata.php"); 47 43 include("modules/Elezioni/ele.php"); 44 global $votolista, $limite; 45 if(!isset($votolista)) $votolista=0; 46 $res = mysql_query("SELECT tipo_cons FROM ".$prefix."_ele_consultazione where id_cons_gen='$id_cons_gen'" , $dbi); 47 list($tipo_cons) = mysql_fetch_row($res); 48 if ($tipo_cons!=3 or $votolista==1) $limite=0; #die ("limite: $limite");} 48 49 $res = mysql_query("SELECT count(id_circ) FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' ", $dbi); 49 50 list($num_circ)=mysql_fetch_row($res); … … 500 501 $ele_lista=''; 501 502 if (($genere==4 or $genere==5) and !$votoc) { //liste a piu' candidati 502 if( $fascia<=$limiteand !$id_lista) {503 if(($fascia<=$limite) and !$id_lista) { 503 504 $result = mysql_query("SELECT id_lista from ".$prefix."_ele_lista where id_cons=$id_cons limit 0,1",$dbi); 504 505 list($id_lista)=mysql_fetch_row($result); … … 514 515 echo "<option value=\"0\" selected>"._VOTI_LISTA; 515 516 $ele_lista=" group by t1.id_lista "; 517 if(!isset($votolista)) $votolista=0; 516 518 517 519 }
Note:
See TracChangeset
for help on using the changeset viewer.