forked from extern/egroupware
do NOT skip setup in ./svn-helper.php up
This commit is contained in:
parent
f641c2cec6
commit
b202499f4e
@ -67,7 +67,8 @@ function get_app_dirs()
|
|||||||
foreach(scandir(__DIR__) as $dir)
|
foreach(scandir(__DIR__) as $dir)
|
||||||
{
|
{
|
||||||
$path = __DIR__ . '/'. $dir;
|
$path = __DIR__ . '/'. $dir;
|
||||||
if (!is_dir($path) || in_array($dir, array('debian','home','doc','..','.svn')) || !is_dir($path.'/setup')) continue;
|
if (!is_dir($path) || in_array($dir, array('debian','home','doc','..','.svn')) ||
|
||||||
|
!is_dir($path.'/setup') && $dir != 'setup') continue;
|
||||||
$app_dirs[$dir == '.' ? 'egroupware' : $dir] = $dir;
|
$app_dirs[$dir == '.' ? 'egroupware' : $dir] = $dir;
|
||||||
}
|
}
|
||||||
//error_log(__METHOD__."() returning ".print_r($app_dirs, true));
|
//error_log(__METHOD__."() returning ".print_r($app_dirs, true));
|
||||||
|
Loading…
Reference in New Issue
Block a user