- Fixed some php notices.
- Added error_reporting level in app.inc.php to E_ALL & ~E_NOTICE
| | |
| | | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | */ |
| | | |
| | | //* Enable gzip compression for the interface |
| | | ob_start('ob_gzhandler'); |
| | | |
| | | //* Set error reporting level when we are not on a developer system |
| | | if(DEVSYSTEM == 0) { |
| | | @ini_set('error_reporting', E_ALL & ~E_NOTICE); |
| | | } |
| | | |
| | | /* |
| | | Application Class |
| | | */ |
| | | |
| | | ob_start('ob_gzhandler'); |
| | | |
| | | class app { |
| | | |
| | | private $_language_inc = 0; |
| | |
| | | //** Application |
| | | define('ISPC_APP_TITLE', 'ISPConfig'); |
| | | define('ISPC_APP_VERSION', '3.0.2'); |
| | | define('DEVSYSTEM', 0); |
| | | |
| | | |
| | | //** Database |
| | |
| | | $atom_url = ""; |
| | | } |
| | | |
| | | $rows = array(); |
| | | |
| | | if( $atom_url != '' ) { |
| | | if(!isset($_SESSION['s']['rss_news'])) { |
| | | |