fixing some small php notice at install time

This commit is contained in:
Benjamin Sonntag 2011-06-04 09:34:12 +00:00
parent 7ce145c2fa
commit 2a6eaf60f3
4 changed files with 12 additions and 3 deletions

View File

@ -9,6 +9,9 @@ function update_locale($langpath) {
$locales[$mat[1]]=$mat[1];
}
}
if (!count($locales)) {
$locales=array("en_US"=>"en_US");
}
return $locales;
}
@ -23,6 +26,11 @@ $langpath = bindtextdomain("alternc", "/var/alternc/bureau/locales");
// Create or update a locale.php file if it is outdated.
$locales = update_locale($langpath);
// Default to en_US :
if (!isset($_SERVER["HTTP_ACCEPT_LANGUAGE"])) {
$_SERVER["HTTP_ACCEPT_LANGUAGE"]="en_US";
}
if (!(isset($lang))) { // Use the browser first preferred language
$lang=strtolower(substr(trim($_SERVER["HTTP_ACCEPT_LANGUAGE"]),0,5));
}
@ -39,7 +47,7 @@ if (! isset($locales[$lang])) { // Requested language not found in locales
}
}
if (!isset($locales[$lang])) $lang=$locales[0];
if (!isset($locales[$lang])) list($lang)=each($locales);
if (isset($setlang) && isset($lang)) {
setcookie("lang",$lang);

View File

@ -140,6 +140,7 @@ class m_err {
global $mem,$cuid;
$f=@fopen($this->logfile,"ab");
if ($f) {
if (!isset($_SERVER['REMOTE_ADDR'])) $_SERVER['REMOTE_ADDR']="::1";
fputs($f,date("d/m/Y H:i:s")." - " . $_SERVER['REMOTE_ADDR'] . " - CALL - ");
fputs($f,$mem->user["login"]." - ");
fputs($f,$clsid." - ".$function." - ".$param."\n");

View File

@ -173,7 +173,7 @@ class m_quota {
global $err,$db,$cuid;
$err->log("quota","setquota",$ressource."/".$size);
if (floatval($size)==0) $size="0";
if ($this->disk[$ressource]) {
if (isset($this->disk[$ressource])) {
// It's a disk resource, update it with shell command
exec("/usr/lib/alternc/quota_edit $cuid $size");
// Now we check that the value has been written properly :

View File

@ -46,7 +46,7 @@ function variable_init($conf = array()) {
while ($db->next_record($result)) {
/* maybe the data is *not* serialized, in that case, take it verbatim */
$variable = $db->Record;
if (($variables[$variable['name']] = unserialize($variable['value'])) === FALSE) {
if (($variables[$variable['name']] = @unserialize($variable['value'])) === FALSE) {
$variables[$variable['name']] = $variable['value'];
}
}