diff --git a/main.inc.php b/main.inc.php
index 65604a3bbd155d714276d1dd08869db76cc2e2d4..c4b10edc0fa5af958a25126b77bc7409338e7b06 100644
--- a/main.inc.php
+++ b/main.inc.php
@@ -46,8 +46,8 @@
     error_reporting($error_reporting); //Respect whatever is set in php.ini (sysadmin knows better??)
 
     #Don't display errors
-    ini_set('display_errors',1);
-    ini_set('display_startup_errors',1);
+    ini_set('display_errors', 0);
+    ini_set('display_startup_errors', 0);
 
     //Default timezone
     if (!ini_get('date.timezone')) {
@@ -75,7 +75,7 @@
     /*############## Do NOT monkey with anything else beyond this point UNLESS you really know what you are doing ##############*/
 
     #Current version && schema signature (Changes from version to version)
-    define('THIS_VERSION','1.7-RC5+'); //Shown on admin panel
+    define('THIS_VERSION','1.7-RC6'); //Shown on admin panel
     define('SCHEMA_SIGNATURE', 'd959a00e55c75e0c903b9e37324fd25d'); //MD5 signature of the db schema. (used to trigger upgrades)
     #load config info
     $configfile='';
diff --git a/setup/setup.inc.php b/setup/setup.inc.php
index 59d1a1d50d63150d119755c7c410d4a35c3d1eca..5339d9988cf81edb0bd5de920c2456ef583efcd9 100644
--- a/setup/setup.inc.php
+++ b/setup/setup.inc.php
@@ -15,7 +15,7 @@
 **********************************************************************/
 
 #This  version - changed on every release
-define('THIS_VERSION', '1.7-RC5+');
+define('THIS_VERSION', '1.7-RC6');
 
 #inits - error reporting.
 $error_reporting = E_ALL & ~E_NOTICE;
@@ -24,7 +24,7 @@ if (defined('E_STRICT')) # 5.4.0
 if (defined('E_DEPRECATED')) # 5.3.0
     $error_reporting &= ~(E_DEPRECATED | E_USER_DEPRECATED);
 
-error_reporting($error_reporting); 
+error_reporting($error_reporting);
 ini_set('magic_quotes_gpc', 0);
 ini_set('session.use_trans_sid', 0);
 ini_set('session.cache_limiter', 'nocache');