Fix: Wrong list of application in index page

This commit is contained in:
Laurent Destailleur 2008-05-21 18:37:16 +00:00
parent 3087b6c0fc
commit 3c1eaa1633

View File

@ -306,8 +306,7 @@ while ($file = readdir($handle))
if (is_dir($file) && !in_array($file,$projectsListIgnore) && !in_array($file,$aliasarray))
{
$projectContents .= '<li><a href="'.$file.'">';
if (eregi('dolibarr',$file)) $projectContents .= $file.' (URL=http://<i>ipofyourserver</i>:81/'.$file.'/)';
if (eregi('phpmyadmin',$file)) $projectContents .= $file.' (URL=http://<i>ipofyourserver</i>:81/'.$file.'/)';
$projectContents .= $file;
$projectContents .= '</a></li>';
}
}