update location of devs

SVN revision: 65279
This commit is contained in:
Carsten Haitzler 2011-11-16 04:11:45 +00:00
parent c78d297baf
commit 7904692da8
2 changed files with 2 additions and 5 deletions

View File

@ -16,7 +16,7 @@
*/
function developers_active ()
{
$path = '/var/www/web/devs/*';
$path = "/var/www/web/web/www/DATA/devs/*";
$paths = glob($path, GLOB_ONLYDIR);
$paths = array_filter($paths, '_developer_path_filter');
@ -27,9 +27,6 @@ function developers_active ()
function _developer_path_filter ( $path )
{
if ($path == '/var/www/web/devs/ewww')
return false;
if ( !file_exists("$path/info.txt") )
return false;

View File

@ -49,7 +49,7 @@ function tr_odd($reset = false)
function dev_data_photo($data)
{
if ( $data['Photo'] )
return "<img src='http://download.enlightenment.org/devs/{$data['Login']}/icon-sml.png' width='40' height='54' border='0'>";
return "<img src='http://www.enlightenment.org/DATA/devs/{$data['Login']}/icon-sml.png' width='40' height='54' border='0'>";
else
return "<img src='i/logo-s.png' width='18' height='24' border='0'>";
}