From 97d92a6f6950c05996ebee95562752c322ee08a0 Mon Sep 17 00:00:00 2001 From: seek3r Date: Mon, 8 Jan 2001 18:53:56 +0000 Subject: [PATCH] fixed typo --- phpgwapi/setup/config.inc.php | 2 +- setup/inc/phpgw_setup.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phpgwapi/setup/config.inc.php b/phpgwapi/setup/config.inc.php index b938cb2dfe..c6d74bc354 100644 --- a/phpgwapi/setup/config.inc.php +++ b/phpgwapi/setup/config.inc.php @@ -1,5 +1,5 @@ -  Directory information +  Path information diff --git a/setup/inc/phpgw_setup.inc.php b/setup/inc/phpgw_setup.inc.php index 74289fd60e..2d94074df9 100644 --- a/setup/inc/phpgw_setup.inc.php +++ b/setup/inc/phpgw_setup.inc.php @@ -348,7 +348,7 @@ /* Then add the rest */ $d = dir($phpgw_info["server"]["server_root"]); while ($entry=$d->read()){ - if ($entry != "" && $completed_scripts[$appname] != True){ + if ($entry != "" && $completed_scripts[$entry] != True){ $f = $phpgw_info["server"]["server_root"]."/".$entry."/setup/".$script.".inc.php"; if (file_exists($f)) {include($f);} }