don't manifold slashes in case empty $app is forwarded to linkTo()

This commit is contained in:
Arthur Schiwon 2011-04-16 12:43:37 +02:00
parent 8465f76e7e
commit 627dc95d19
1 changed files with 9 additions and 5 deletions

View File

@ -36,12 +36,16 @@ class OC_HELPER {
public static function linkTo( $app, $file ){
global $WEBROOT;
global $SERVERROOT;
// Check if the app is in the app folder
if( file_exists( "$SERVERROOT/apps/$app/$file" )){
return "$WEBROOT/apps/$app/$file";
if(!empty($app)) {
$app .= '/';
}
return "$WEBROOT/$app/$file";
// Check if the app is in the app folder
if( file_exists( $SERVERROOT . '/apps/'. $app . $file )){
return $WEBROOT . '/apps/' . $app . $file;
}
return $WEBROOT . '/' . $app . $file;
}
/**