From 539464e14d92fa2e60db2a8fa47acb73d6352189 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Mon, 12 Aug 2013 09:51:21 -0400
Subject: [PATCH] Changed error reporting level to "E_ALL & ~E_NOTICE" in cron_daily.php like it is set in server.php

---
 server/cron_daily.php |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/server/cron_daily.php b/server/cron_daily.php
index 443ad6c..362484f 100644
--- a/server/cron_daily.php
+++ b/server/cron_daily.php
@@ -33,6 +33,7 @@
 require(SCRIPT_PATH."/lib/app.inc.php");
 
 set_time_limit(0);
+ini_set('error_reporting', E_ALL & ~E_NOTICE);
 
 // make sure server_id is always an int
 $conf['server_id'] = intval($conf['server_id']);

--
Gitblit v1.9.1