Changeset 416 for trunk/admin


Ignore:
Timestamp:
May 21, 2024, 10:18:28 PM (6 months ago)
Author:
roby
Message:
  • ADMIN

-- Inserita la variabile in config.php per il numero di liste per pagina visualizzate
-- Modificato l'aggiornamento del db per accettare nome personalizzato del superuser

  • CLIENT

-- Inserita la variabile in config.php per il numero di liste per pagina visualizzate
-- Aggiornata una query per la compatibilità con l'impostazione di mysql sql_mode=only_full_group_by

Location:
trunk/admin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/admin.php

    r406 r416  
    233233        #       if ($adminsuper==1) $id_comune2=0; else
    234234                $id_comune2=$id_comune;
    235                 $sth = $dbi->prepare("select pwd,adminop,adminsuper,counter,admlanguage from ".$prefix."_authors where aid='$aid' and (id_comune='$id_comune2' or adminsuper='1')");
     235                $sth = $dbi->prepare("select pwd,adminop,adminsuper,counter,admlanguage from ".$prefix."_authors where binary aid='$aid' and (id_comune='$id_comune2' or adminsuper='1')");
    236236                $sth->execute();       
    237237                $esiste=$sth->rowCount();
  • trunk/admin/modules/Elezioni/aggiornadb.php

    r411 r416  
    116116        $sql="UPDATE `".$prefix."_authors` SET `adminop` = '1', `adminsuper` = '0',`admincomune` = '0' WHERE `".$prefix."_authors`.`aid` != 'admin' AND `".$prefix."_authors`.`adminsuper` != '1'";
    117117        $ret=aggiorna($sql,$dbi,'',$num);
    118         $sql="UPDATE `".$prefix."_authors` SET `adminop` = '0', `adminsuper` = '0',`admincomune` = '1' WHERE `".$prefix."_authors`.`aid` = 'admin'";
     118        $sql="UPDATE `".$prefix."_authors` SET `adminop` = '0', `adminsuper` = '0',`admincomune` = '1' WHERE `".$prefix."_authors`.`aid` = 'admin' and `".$prefix."_authors`.`adminsuper` != '1'";
    119119        $ret=aggiorna($sql,$dbi,'',$num);
    120120        $sql="UPDATE `".$prefix."_authors` SET `adminop` = '0', `adminsuper` = '1',`admincomune` = '0' WHERE `".$prefix."_authors`.`aid` = 'suser' or `".$prefix."_authors`.`adminsuper` = '1'";
  • trunk/admin/modules/Elezioni/ele_lista.php

    r399 r416  
    4242
    4343// Offset - visualizza il numero di elementi per pagina
    44 
    45 $offset=15;
     44if(isset($offsetliste) and $offsetliste>0) $offset=$offsetliste; else $offset=15;
    4645$hiddenInfo = "<input type=\"hidden\" name=\"min\" value=\"$min\">";
    4746
  • trunk/admin/versione.php

    r415 r416  
    11<?php
    22
    3 $versione = "3.0 rev 415";
     3$versione = "3.0 rev 416";
    44$version_number = $versione;
    5 $datarel = "17 maggio 2024";
     5$datarel = "21 maggio 2024";
    66$version = "Eleonline $version_number (<i>Data Release: $datarel</i>)";
    77
Note: See TracChangeset for help on using the changeset viewer.