Revert des deux commit précédents
This commit is contained in:
parent
19c8de6039
commit
bae7ebbf9e
|
@ -1,19 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
error_reporting(E_ALL | E_STRICT);
|
error_reporting(E_ALL | E_STRICT);
|
||||||
ini_set("display_errors", 1); // Ne s'appliquera pas au fichier courant !
|
// display_errors ne s'appliquera pas au fichier courant,
|
||||||
|
// alors gardons-le aussi court que possible !
|
||||||
|
ini_set("display_errors", 1);
|
||||||
|
|
||||||
require_once(dirname(__FILE__) . "/debug.php");
|
require_once(dirname(__FILE__) . "/configuration.php");
|
||||||
|
require_once(dirname(__FILE__) . "/include.php");
|
||||||
|
|
||||||
$old_error_handler = set_error_handler(array("Debug", "error_handler"), E_ALL | E_STRICT);
|
main();
|
||||||
$old_error_handler = set_error_handler(array("Debug", "error_handler"), E_ALL | E_STRICT);
|
|
||||||
register_shutdown_function(array("Debug", "error_handler"));
|
|
||||||
|
|
||||||
if ($old_error_handler === null) {
|
|
||||||
echo "<pre>Erreur lors de la mise en place des mécanismes de détection et d'affichage d'erreurs.</pre>";
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once(dirname(__FILE__) . "/main.php");
|
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -1,8 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require_once(dirname(__FILE__) . "/configuration.php");
|
|
||||||
require_once(dirname(__FILE__) . "/include.php");
|
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
$g = new GalerieIndex();
|
$g = new GalerieIndex();
|
||||||
$g->res_h_page();
|
$g->res_h_page();
|
||||||
|
@ -10,7 +7,4 @@ function main() {
|
||||||
Debug::afficher();
|
Debug::afficher();
|
||||||
}
|
}
|
||||||
|
|
||||||
//trigger_error("ABCDE", E_USER_NOTICE);
|
|
||||||
main();
|
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user