]> git.wh0rd.org - tt-rss.git/commitdiff
set required error_reporting just in case
authorAndrew Dolgov <fox@bah.spb.su>
Sun, 4 Mar 2007 13:02:47 +0000 (14:02 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sun, 4 Mar 2007 13:02:47 +0000 (14:02 +0100)
backend.php
opml.php
prefs.php
tt-rss.php
update.php

index 1a53d1c68d5abdc5f32d6076b7245de29653d555..d2f3d356b991ad7767c8b26d50b058a71699237a 100644 (file)
@@ -1,8 +1,9 @@
 <?php
+       error_reporting(E_ERROR | E_WARNING | E_PARSE);
+
        require_once "sessions.php";
        require_once "modules/backend-rpc.php";
 
-
 /*     if ($_GET["debug"]) {
                define('DEFAULT_ERROR_LEVEL', E_ALL);
        } else {
index d6ecbbda39aa2109ec1d93e4d7efc27f3347ab01..fd93acd2d208840eb9e5a63754a62fab3a3baa28 100644 (file)
--- a/opml.php
+++ b/opml.php
@@ -1,4 +1,6 @@
 <?php
+       error_reporting(E_ERROR | E_WARNING | E_PARSE);
+
        require_once "sessions.php";
        require_once "sanity_check.php";
        require_once "functions.php";
index 93c246b908e1592f7f0586e98ff08a945096e1f6..f9ddee82eb6e530c5d6674505dbc0ed863798148 100644 (file)
--- a/prefs.php
+++ b/prefs.php
@@ -1,4 +1,6 @@
 <?php
+       error_reporting(E_ERROR | E_WARNING | E_PARSE);
+
        require_once "functions.php"; 
        require_once "sessions.php";
        require_once "sanity_check.php";
index 5adb8dbf7450349312cd9418244694e6ef25e79a..fe7cc01aed9cc29fb3ce31feb628f182a5ac664e 100644 (file)
@@ -1,4 +1,6 @@
 <?php
+       error_reporting(E_ERROR | E_WARNING | E_PARSE);
+
        require_once "functions.php"; 
        require_once "sessions.php";
        require_once "sanity_check.php";
index 4e1eb923aa52831653e7b6356374d2cec1d940bf..514e0104564de2e94c74c685d44009371f72db54 100644 (file)
@@ -1,4 +1,6 @@
 <?php
+       error_reporting(E_ERROR | E_WARNING | E_PARSE);
+
        require_once "sessions.php";
        
        require_once "sanity_check.php";