X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fplatal.inc.php;h=cffcb58a72d009e541871193d0777b812261673e;hb=3ecd0a882aebbb539b4b0e507a360e961cd51c63;hp=7ab9ef8c5f4dcd2fc6f1c4b35fbc2fe47291076b;hpb=787bb3d745141f2f85bd947ad7dd775d2c63f908;p=platal.git diff --git a/include/platal.inc.php b/include/platal.inc.php index 7ab9ef8..cffcb58 100644 --- a/include/platal.inc.php +++ b/include/platal.inc.php @@ -1,6 +1,6 @@ "User Error", E_USER_WARNING => "User Warning", E_USER_NOTICE => "User Notice", - E_STRICT => "Runtime Notice" + E_STRICT => "Runtime Notice", + E_RECOVERABLE_ERROR => "Recoverable Error" ); } @@ -85,10 +87,11 @@ function pl_error_handler($errno, $errstr, $errfile, $errline) } } + $type = isset($errortype[$errno]) ? $errortype[$errno] : $errno; $errstr = utf8_encode(htmlentities($errstr)); $GLOBALS['pl_errors'][] = "
". - "{$errortype[$errno]} $errstr
". + "{$type} $errstr
". "$errfile : $errline". "
"; } @@ -101,10 +104,10 @@ function pl_clear_errors() function pl_dump_env() { echo "
";
-    echo "\nSESSION: "; var_export($_SESSION);
-    echo "\nPOST:    "; var_export($_POST);
-    echo "\nGET:     "; var_export($_GET);
-    echo "\nCOOKIE:  "; var_export($_COOKIE);
+    echo "\nSESSION: " . session_id(); var_dump($_SESSION);
+    echo "\nPOST:    "; var_dump($_POST);
+    echo "\nGET:     "; var_dump($_GET);
+    echo "\nCOOKIE:  "; var_dump($_COOKIE);
     echo "
"; } @@ -117,7 +120,7 @@ function pl_print_errors() set_error_handler('pl_error_handler', E_ALL | E_STRICT); register_shutdown_function('pl_print_errors'); -// register_shutdown_function('pl_dump_env'); +//register_shutdown_function('pl_dump_env'); /** Check if the string is utf8 */ @@ -134,7 +137,7 @@ function isvalid_email($email) // la rfc2822 authorise les caractères "a-z", "0-9", "!", "#", "$", "%", "&", "'", "*", "+", "-", "/", "=", "?", "^", `", "{", "|", "}", "~" aussi bien dans la partie locale que dans le domaine. // Pour la partie locale, on réduit cet ensemble car il n'est pas utilisé. // Pour le domaine, le système DNS limite à [a-z0-9.-], on y ajoute le "_" car il est parfois utilisé. - return preg_match("/^[a-z0-9_.'+-]+@[a-z0-9._-]+\.[a-z]{2,4}$/i", $email); + return preg_match("/^[a-z0-9_.'+-]+@[a-z0-9._-]+\.[a-z]{2,6}$/i", $email); } function pl_url($path, $query = null, $fragment = null) @@ -152,10 +155,8 @@ function pl_self($n = null) { function http_redirect($fullurl) { - if (count($_SESSION)) { - session_write_close(); - } - header('Location: '.$fullurl); + Platal::session()->close(); + header('Location: '. $fullurl); exit; }