Code

Updated in_array checks in GOsa.
[gosa.git] / gosa-core / setup / class_setup.inc
index 17e245ba2575a89c7dfbe2611bebe5e4ab8008d4..6d0061d95728d423cb0444eb174be3039da4751e 100644 (file)
@@ -39,7 +39,7 @@ class setup
         $this->o_steps[$i++] = new Step_Checks();
         $this->o_steps[$i++] = new Step_License();
         $this->o_steps[$i++] = new Step_Ldap();
-#    $this->o_steps[$i++] = new Step_Schema();
+    $this->o_steps[$i++] = new Step_Schema();
         $this->o_steps[$i++] = new Step_Migrate();
         $this->o_steps[$i++] = new Step_Feedback();
         $this->o_steps[$i++] = new Step_Finish();
@@ -224,6 +224,7 @@ class setup
             $str ="";
         }else{
             $str ="<div class='plugin-actions'>";
+
             if(isset($this->o_steps[$this->i_current -1]) && $this->o_steps[$this->i_current -1]->is_enabled()){
                 $str .= "<button type='submit' name='last'>".msgPool::backButton()."</button>";
             }else{
@@ -231,9 +232,10 @@ class setup
             }
 
             if($this->o_steps[$this->i_current]->b_displayCheckbutton){
-                $str .= "<button type='submit' name='test'>"._("check")."</button>";
+                $str .= "&nbsp;<button type='submit' name='test'>"._("Check again")."</button>";
             }
-            $str .= "<button type='submit' name='next'>"._("next")."</button>";
+
+            $str .= "&nbsp;<button type='submit' name='next'>"._("Next")."</button>";
             $str .="</div>";
         }
         return($str);