Changeset 230 for trunk/client/modules.php
- Timestamp:
- May 18, 2015, 12:17:41 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules.php
r154 r230 89 89 // apre database 90 90 //////////////////////// 91 92 @require_once("config.php"); 91 if (file_exists("config.php")) @require_once("config.php"); else $install="1"; 92 93 94 93 95 # verifica se effettuata la configurazione 94 if(empty($dbname) ) {96 if(empty($dbname) || $istall=="1") { 95 97 die("<html><body><div style=\"text-align:center\"><br /><br /><img src=\"modules/Elezioni/images/logo.jpg\" alt=\"Eleonline\" title=\"Eleonline\"><br /><br /><strong>Sembra che <a href='http://www.eleonline.it' title='Eleonline'>Eleonline</a> non sia stato ancora installato.<br /><br />Puoi procedere <a href='../install/index.php'>cliccando qui</a> per iniziare l'installazione</strong></div></body></html>"); 96 98 } … … 143 145 $tema_on = intval($row['tema_on']); 144 146 $ed_user = $row['ed_user']; 147 #tema mobile 148 $cellulare = intval($row['cellulare']); 149 150 151 145 152 # altre config 146 153 $res = mysql_query("SELECT * FROM ".$prefix."_ele_comuni where id_comune='$siteistat' ", $dbi); … … 225 232 if(preg_match("/%/i", $tema)) $tema="default";// evita xss 226 233 $_SESSION['newtema']="$tema"; 234 227 235 } 228 236 if (isset($_SESSION['newtema'])) { … … 230 238 if (preg_match("/%/i",$_SESSION['newtema'])) $_SESSION['newtema']="default"; // xss 231 239 } 240 241 //ritorno disabilita tema cellulare dal file backtoapp e dal footer lo riattiva 242 if (isset($param['nocell'])){ 243 $nocell=$param['nocell']; 244 $_SESSION['newcell']="$nocell"; 245 } 246 if (isset($_SESSION['newcell'])) $nocell=$_SESSION['newcell']; 247 248 249 250 251 232 252 $PHP_SELF=$_SERVER['PHP_SELF']; 233 253 $file=(isset($_GET['file'])) ? htmlentities($_GET['file']):"index";
Note:
See TracChangeset
for help on using the changeset viewer.