Ignore:
Timestamp:
Sep 23, 2020, 11:32:27 AM (4 years ago)
Author:
roby
Message:

Admin: prime modifiche per compatibilità con php 7.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/temi/default/index.php

    r256 r336  
    1818        $sth->execute();       
    1919        $row = $sth->fetch(PDO::FETCH_BOTH);
    20 $descr_consultazione=$row[0];
     20        if($sth->rowCount())
     21                $descr_consultazione=$row[0];
     22        else
     23                $descr_consultazione='';
    2124$sql="select descrizione from ".$prefix."_ele_comuni where id_comune='$id_comune'";
    2225        $sth = $dbi->prepare("$sql");
    2326        $sth->execute();       
    2427        $row = $sth->fetch(PDO::FETCH_BOTH);
    25 $descr_comune=$row[0];
     28        if($sth->rowCount())
     29                $descr_comune=$row[0];
     30        else
     31                $descr_comune='';
    2632
    2733echo "<div class=\"container\"><table width=\"95%\"  border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"table-main\">
Note: See TracChangeset for help on using the changeset viewer.