Ignore:
Timestamp:
Jun 1, 2022, 6:05:05 PM (2 years ago)
Author:
roby
Message:

client:
tema facebook non vengono visualizzate le voci di menu per i risultati di lista - risolto
se la cartella images non è scrivibile il programma blocca la produzione della stampa pdf - risolto

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/modules/Elezioni/index.php

    r365 r370  
    6666$files=htmlentities($files);
    6767$lettera=htmlentities($lettera);
    68 $ordine=htmlentities($ordine);
     68$ordine=htmlentities($ordine);
     69$cap='';
    6970global $limite;
    7071$sql="SELECT id_conf FROM ".$prefix."_ele_cons_comune where id_cons_gen='$id_cons_gen' and id_comune='$id_comune'" ;
     
    133134if ($rss!=1   && $xls!=1 && $pdf!=1){
    134135    $index = 1;
    135         $sql="SELECT descrizione,simbolo FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ";
    136         $res = $dbi->prepare("$sql");
    137         $res->execute();
    138 
    139         list($descr_com,$simbolo) = $res->fetch(PDO::FETCH_NUM);
     136        $sql="SELECT descrizione,simbolo,cap FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ";
     137        $res = $dbi->prepare("$sql");
     138        $res->execute();
     139
     140        list($descr_com,$simbolo,$cap) = $res->fetch(PDO::FETCH_NUM);
    140141        $descr_com =stripslashes($descr_com);
    141142        # titolo pagina 2015
     
    446447function sezione() {
    447448   global $admin, $prefix, $dbi, $offset, $min,$votog,$circo, $id_cons_gen,$id_circ,$descr_circ,$id_cons,$file,$prev,$next,$id_comune,$googlemaps;
    448 
     449        global $descr_com,$cap;
    449450 if(!isset($_GET['id_circ'])) unset($id_circ);
    450451 dati();
     
    454455if (isset($param['id_sede'])) $id_sede=intval($param['id_sede']); else $id_sede='0';
    455456 if ($id_sede!='0' && $googlemaps!='1'){
    456  echo "<br /><div><img src=\"modules.php?name=Elezioni&amp;file=foto&amp;id_sede=".$id_sede."\" alt=\"mappa\" /></div>";
     457        $sql="SELECT indirizzo FROM ".$prefix."_ele_sede where id_sede='$id_sede'";
     458        $res1 = $dbi->prepare("$sql");
     459        $res1->execute();
     460        list($ind) = $res1->fetch(PDO::FETCH_NUM);
     461        $indir=str_replace(" ","+",$ind."+".$descr_com."+".$cap);
     462        echo "<br /><div><a href=\"https://maps.google.it/maps/place/".$indir."\"><img src=\"modules.php?name=Elezioni&amp;file=foto&amp;id_sede=".$id_sede."\" alt=\"mappa\" /></a></div>";
    457463 }elseif($id_sede!='0' && $googlemaps=='1'){
    458464    $mappa=googlemaps(); //echo $mappa;
Note: See TracChangeset for help on using the changeset viewer.