Code

Reverted setup temporary patch to "/tmp/gosa.auth"
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 15 May 2008 05:59:09 +0000 (05:59 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 15 May 2008 05:59:09 +0000 (05:59 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10899 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/setup/class_setupStep_Welcome.inc

index cfe14cf6d8ac49abb1b2e641cf5e1fe1eadbc398..082f22c3a53ef96d905c44b1b2932b4263a773a1 100644 (file)
@@ -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]);