X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=include%2Fphp_setup.inc;h=139f195d92b668dfd7f2445367d8b3af69cf398b;hb=aa64d91c3b51a232fe8bd1c8e112cadd8f8f1245;hp=98f8db70974bd27dd7860febdbecc8d6acfb7bb6;hpb=257502665afab3a2ca47223de97fe4fb909002ed;p=gosa.git diff --git a/include/php_setup.inc b/include/php_setup.inc index 98f8db709..139f195d9 100644 --- a/include/php_setup.inc +++ b/include/php_setup.inc @@ -40,15 +40,6 @@ function gosaRaiseError($errno, $errstr, $errfile, $errline) return; } - /* FIXME: Workaround for PHP5 error message flooding. The new OOM - code want's us to use public/protected/private instead of flat - var declarations. For now I can't workaround this - let's ignore - the messages till the next major release which may drop support - for PHP4. */ - if (preg_match('/var: Deprecated./', $errstr) || preg_match("/Declaration of.*should be compatible/",$errstr)){ - return; - } - /* Hide ldap size limit messages */ if (preg_match('/ldap_error/', $errstr)){ if (preg_match('/sizelimit/', $errstr)){ @@ -215,6 +206,9 @@ function dummy_error_handler() } +/* Set timezone */ +date_default_timezone_set("GMT"); + /* Get base dir for reference */ $BASE_DIR= dirname(dirname(__FILE__)); $ROOT_DIR= $BASE_DIR."/html"; @@ -239,8 +233,5 @@ $smarty->template_dir = $BASE_DIR.'/ihtml/'; $smarty->caching= false; $smarty->php_handling= SMARTY_PHP_REMOVE; -/* Set timezone */ -date_default_timezone_set("GMT"); - // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>