Index: branches/main/admin/interface/version.php
===================================================================
--- branches/main/admin/interface/version.php	(revision 34)
+++ branches/main/admin/interface/version.php	(revision 35)
@@ -37,14 +37,13 @@
 
 // use
 
-/* -------------------------------------------------------- */
+if (!defined('VERSION_LOADED')) {
 // Must include code to stop this file being accessed directly
-if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); echo '404 File not found'; flush(); exit;}
+    if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); echo '404 File not found'; flush(); exit;}
 /* -------------------------------------------------------- */
-if (!defined('VERSION_LOADED')) {
     $sInfo = '
         VERSION  = "2.11.0-RC1"
-        REVISION = "34"
+        REVISION = "35"
         SP       = ""
     ';
     foreach (parse_ini_string($sInfo) as $item=>$value) {
Index: branches/main/admin/settings/index.php
===================================================================
--- branches/main/admin/settings/index.php	(revision 34)
+++ branches/main/admin/settings/index.php	(revision 35)
@@ -243,14 +243,8 @@
 /*---------------------------------------------------------------------------------------------------*/
     // Insert default error reporting values
     $template->set_block('show_php_error_level_block', 'error_reporting_list_block',  'error_reporting_list');
-    require(ADMIN_PATH.'/interface/er_levels.php');
-    foreach($ER_LEVELS AS $value => $title)
-    {
-        $template->set_var('VALUE', $value);
-        $template->set_var('NAME', $title);
-        $template->set_var('SELECTED', ((ER_LEVEL == $value) ? ' selected="selected"' : '') );
+        $template->set_var(['VALUE'=>'-1', 'NAME'=>'E_ALL', 'SELECTED'=>' selected="selected"']);
         $template->parse('error_reporting_list', 'error_reporting_list_block', true);
-    }
 /*-------------------------------------------------------------------------------------*/
     // Insert WYSIWYG modules
     $template->set_block('show_wysiwyg_block', 'wysiwyg_list_block', 'wysiwyg_list');
Index: branches/main/admin/settings/save.php
===================================================================
--- branches/main/admin/settings/save.php	(revision 34)
+++ branches/main/admin/settings/save.php	(revision 35)
@@ -242,6 +242,10 @@
             case 'wb_version':
                 continue;
                 break;
+            case 'er_level':
+                $value = '-1';
+                $passed = true;
+                break;
             default :
                 $passed = in_array($setting_name, $allow_empty_values);
                 break;
