Code

ACls with no memebers are no inactive.
[gosa.git] / gosa-core / setup / class_setupStep_Welcome.inc
index cfe14cf6d8ac49abb1b2e641cf5e1fe1eadbc398..f5104f1a02e1705b57803ad9ad6ae7de0a0e77b8 100644 (file)
@@ -24,7 +24,7 @@ class Step_Welcome  extends setup_step
 {
   var $languages      = array();
   var $attributes     = array();
-  var $header_image   = "images/welcome.png";
+  var $header_image   = "images/setup/welcome.png";
 
   function Step_Welcome()
   {
@@ -45,7 +45,7 @@ class Step_Welcome  extends setup_step
     $smarty = get_smarty();
     $smarty->assign('auth_id', session_id());
 
-    $smarty->assign("path",TEMP_DIR.'/gosa.auth');
+    $smarty->assign("path",'/tmp/gosa.auth');
     return($smarty->fetch(get_template_path("setup_welcome.tpl",TRUE,dirname(__FILE__))));
   }
 
@@ -54,7 +54,7 @@ class Step_Welcome  extends setup_step
     $id = "";
     
     /* Get auth ID from file */
-    $path = TEMP_DIR.'/gosa.auth';
+    $path = '/tmp/gosa.auth';
     if (file_exists($path) && is_readable($path)){
       $contents= file($path);
       $id= chop($contents[0]);