summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 83508f6)
raw | patch | inline | side by side (parent: 83508f6)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 15 May 2008 05:59:09 +0000 (05:59 +0000) | ||
committer | hickert <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 | patch | blob | history |
diff --git a/gosa-core/setup/class_setupStep_Welcome.inc b/gosa-core/setup/class_setupStep_Welcome.inc
index cfe14cf6d8ac49abb1b2e641cf5e1fe1eadbc398..082f22c3a53ef96d905c44b1b2932b4263a773a1 100644 (file)
$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__))));
}
$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]);