Ignore:
Timestamp:
Feb 25, 2024, 3:57:45 PM (3 months ago)
Author:
roby
Message:
  • ADMIN

-- Migliorata la gestione di operatori e responsabili

  • CLIENT

-- Nuovo tema BSItalia realizzato dal CED di Capo d'Orlando
-- Sistemata la funzione del widget privacy
-- Varie modifiche di allineamento oggetti

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/modules.php

    r362 r400  
    6868  }
    6969}
     70
    7071 
    7172function jsexist(){ // controlla javascript by l.apolito 2008
     
    121122
    122123
    123 
    124 
    125 
     124 $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST;
     125 if (isset($param['id_comune'])) $id_comune=intval($param['id_comune']); #else $id_comune=$siteistat;
     126 if (isset($param['id_cons_gen'])) $id_cons_gen=intval($param['id_cons_gen']);
    126127
    127128# carica i parametri di default sulla tabella
     
    135136$adminmail = $row['adminmail'];
    136137$tema = $row['tema'];
     138$temaimpostata=$tema; #per link desktop moblie
    137139$language = $row['language'];
    138140$blocco = intval($row['blocco']);
     
    256258
    257259
    258 
     260$param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST;
    259261$PHP_SELF=$_SERVER['PHP_SELF'];
    260 $file=(isset($_GET['file'])) ? htmlentities($_GET['file']):"index";
    261 $name=(isset($_GET['name'])) ? htmlentities($_GET['name']):"Elezioni";
    262 $op=(isset($_GET['op'])) ? htmlentities($_GET['op']):"gruppo";
    263 if (!isset($_GET['op'])) $_GET['op']="gruppo";
     262$file=(isset($_param['file'])) ? htmlentities($_param['file']):"index";
     263$name=(isset($_param['name'])) ? htmlentities($_param['name']):"Elezioni";
     264$op=(isset($_param['op'])) ? htmlentities($_param['op']):"gruppo";
     265$id_comune=(isset($_param['id_comune'])) ? intval($_param['id_comune']): $siteistat;
     266$op=(isset($_param['id_cons_gen'])) ? intval($_param['id_cons_gen']):$id_cons_pred;
    264267
    265268$modpath = "modules/$name/$file.php";
Note: See TracChangeset for help on using the changeset viewer.