Browse Source

bug fix: check for correct T_NS_SEPARATOR definition when running underPHP 5.2

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24708 44c647ce-9c0f-0410-b52a-842ac1e357ba
rob 14 years ago
parent
commit
b5505dd341
1 changed files with 1 additions and 1 deletions
  1. 1 1
      library/Zend/File/ClassFileLocator.php

+ 1 - 1
library/Zend/File/ClassFileLocator.php

@@ -63,7 +63,7 @@ class Zend_File_ClassFileLocator extends FilterIterator
             if (!defined('T_NAMESPACE')) {
                 define('T_NAMESPACE', 'namespace');
             }
-            if (!defined('T_NS_SEPARATOR:')) {
+            if (!defined('T_NS_SEPARATOR')) {
                 define('T_NS_SEPARATOR', '\\');
             }
         }