diff options
author | rojaro <> | 2010-09-02 16:03:17 +0000 |
---|---|---|
committer | rojaro <> | 2010-09-02 16:03:17 +0000 |
commit | 08abf856bb9b978b28e155edb4b54bfc3c8877f8 (patch) | |
tree | 84c5e1979a17df521d63fdec4419de638ab2910d /framework | |
parent | 30de03241b5efd1c3f533347be12191aeb3e78a4 (diff) |
aww.. messed up the fix for #285 in r2863 .. here is the fix for that
Diffstat (limited to 'framework')
-rw-r--r-- | framework/PradoBase.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/PradoBase.php b/framework/PradoBase.php index 55758bb6..a164c596 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -345,10 +345,10 @@ class PradoBase { if(self::CLASS_FILE_EXT === $ext || empty($ext)) { - if($_useBuffer && isset(self::$_usings[$namespace])) + if(isset(self::$_usings[$namespace])) return self::$_usings[$namespace]; - if($_useBuffer && isset(self::$_aliases[$namespace])) + if(isset(self::$_aliases[$namespace])) return self::$_aliases[$namespace]; } |