diff --git a/main.inc.php b/main.inc.php
index c6a6d0fe7240e316e0ad4c704c3a774dc8000208..a8aac57df7a8e7995d80b54bcd37d70bfd6555f6 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', 0);
-    ini_set('display_startup_errors', 0);
+    ini_set('display_errors', 1);
+    ini_set('display_startup_errors', 1);
 
     //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.0'); //Shown on admin panel
+    define('THIS_VERSION','1.7.0+'); //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 52b7563a51f9b545c5d58da094da4fd65a09a8ef..e2f5620f7226af5d8d3c4aa0c55f3576d51eefd9 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.0');
+define('THIS_VERSION', '1.7.0+');
 
 #inits - error reporting.
 $error_reporting = E_ALL & ~E_NOTICE;