This commit is contained in:
Marco Michelino 2011-04-19 12:32:37 +02:00
Родитель 3d5c13a3e1
Коммит d1b4f74bc2
2 изменённых файлов: 15 добавлений и 3 удалений

Просмотреть файл

@ -204,7 +204,11 @@ class OC_UTIL {
$file = $application;
$application = "";
}
self::$scripts[] = "$application/js/$file";
if( !empty( $application )){
self::$scripts[] = "$application/js/$file";
}else{
self::$scripts[] = "js/$file";
}
}
/**
@ -217,7 +221,11 @@ class OC_UTIL {
$file = $application;
$application = "";
}
self::$styles[] = "$application/css/$file";
if( !empty( $application )){
self::$styles[] = "$application/css/$file";
}else{
self::$styles[] = "css/$file";
}
}
/**

Просмотреть файл

@ -63,7 +63,11 @@ class OC_HELPER {
if( file_exists( "$SERVERROOT/apps/img/$app/$image" )){
return "$WEBROOT/apps/img/$app/$image";
}
return "$WEBROOT/$app/img/$image";
if( !empty( $app )){
return "$WEBROOT/$app/img/$image";
}else{
return "$WEBROOT/img/$image";
}
}
/**