Avoid // in URIs

remotes/origin/stable
Marco Michelino 15 years ago
parent 3d5c13a3e1
commit d1b4f74bc2
  1. 12
      lib/base.php
  2. 6
      lib/helper.php

@ -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";
}
}
/**

Loading…
Cancel
Save