Code

Added $this
[gosa.git] / setup / class_setupStep_Finish.inc
index 8e23e44371ed99a1c0d64e128da74c24f9510f32..3898c55c5bf4c50135207eb68a0b65aa5c3953e5 100644 (file)
@@ -64,7 +64,7 @@ class Step_Finish extends setup_step
      *   - gosa.conf exists
      *   - Permisssion are set correctly 
      */ 
-    if(isset($_POST['next']) && $exists && !is_world_readable(CONFIG_DIR."/".CONFIG_FILE)){
+    if(isset($_POST['next']) && $exists && !$this->is_world_readable(CONFIG_DIR."/".CONFIG_FILE)){
       session_destroy();
       header("Location: index.php");
       exit();
@@ -97,7 +97,7 @@ class Step_Finish extends setup_step
     $err_msg= "";
     
     if($exists && $this->is_world_readable(CONFIG_DIR."/".CONFIG_FILE)){
-      $err_msg = _("Your configuration file is currently world readable. This is a big security risk. Please updated the file permissions!");
+      $err_msg = _("Your configuration file is currently world readable. Please updated the file permissions!");
     }elseif(!$exists){
       $err_msg = _("The configuration is currently not readable or it does not exists.");
     }