Remove space before parethesis

This commit is contained in:
VicDeo 2013-03-20 16:54:06 +04:00
parent 68d55648d5
commit 3e9ea6d13b
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class OC {
* SPL autoload
*/
public static function autoload($className) {
$className = trim ($className, '\\');
$className = trim($className, '\\');
if (array_key_exists($className, OC::$CLASSPATH)) {
$path = OC::$CLASSPATH[$className];