Changeset 384 for trunk/admin/modules/Elezioni/ele_spoglio.php
- Timestamp:
- Jan 24, 2023, 6:25:59 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/ele_spoglio.php
r371 r384 4 4 /* by Luciano Apolito & Roberto Gigli */ 5 5 /* http://www.eleonline.it */ 6 /* info@eleonline.it luciano@aniene.net rgigli@libero.it*/6 /* info@eleonline.it rgigli@libero.it */ 7 7 /************************************************************************/ 8 8 … … 232 232 ####### 06-11-2014 - circoscrizionali - nello spostamento ad altra sezione resta sullo stesso numero di lista anche se sono sezioni di diverse circoscrizioni 233 233 if ($circo and $id_lista){ 234 $sql="SELECT num_lista from ".$prefix."_ele_lista where id_lista=$id_lista"; 235 $res_lis = $dbi->prepare("$sql"); 236 $res_lis->execute(); 237 list($num_lista)=$res_lis->fetch(PDO::FETCH_NUM); 234 $sql="SELECT id_circ from ".$prefix."_ele_lista where id_lista=$id_lista"; 235 $result = $dbi->prepare("$sql"); 236 $result->execute(); 237 list($tmp_circ)=$result->fetch(PDO::FETCH_NUM); 238 if($tmp_circ==$id_circ){ 239 $sql="SELECT num_lista from ".$prefix."_ele_lista where id_lista=$id_lista"; 240 $res_lis = $dbi->prepare("$sql"); 241 $res_lis->execute(); 242 list($num_lista)=$res_lis->fetch(PDO::FETCH_NUM); 243 } else $id_lista=0; 238 244 } 239 245
Note:
See TracChangeset
for help on using the changeset viewer.