Code

Added rfc2307bis
[gosa.git] / setup / class_setupStep.inc
index f685da56cc6d4beebb594c0685c092bbdd99a7e2..b7438ea703858494503ad9ad818ad6f4b6436171 100644 (file)
@@ -33,7 +33,7 @@ class setup_step extends plugin
 
   var $attributes   = array();
   var $parent       = NULL;
-
+  var $dialog       = FALSE;
   
   function setup_step()
   {
@@ -117,12 +117,14 @@ class setup_step extends plugin
 
   function print_header()
   {
-    $display= print_header(get_template_path($this->header_image),$this->s_title_long,"");  
+    $image= get_template_path($this->header_image);
+    $display= "<div style='padding:3px;'>";
+    $display.= "  <p class=\"center\" style=\"margin:0px 0px 0px 5px;padding:0px;font-size:24px;\"><img class=\"center\" src=\"$image\" align=\"middle\" alt=\"*\">&nbsp;".$this->s_title_long."</p>\n";
+    $display.= "</div>\n";
+
     return($display);
   }
 }
 
-
-
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>