From 152fdecf11b7999262df0410b5584951de5191b3 Mon Sep 17 00:00:00 2001 From: Tim Nagel Date: Thu, 27 May 2010 18:30:26 +1000 Subject: [PATCH] [DCOM-2] Removed false from class_exists to allow autoloading of annotations as required --- lib/Doctrine/Common/Annotations/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Common/Annotations/Parser.php b/lib/Doctrine/Common/Annotations/Parser.php index c9b43a382..c342227e1 100644 --- a/lib/Doctrine/Common/Annotations/Parser.php +++ b/lib/Doctrine/Common/Annotations/Parser.php @@ -248,7 +248,7 @@ public function Annotation() ( ! $this->_isNestedAnnotation && $this->_lexer->lookahead != null && ! $this->_lexer->isNextToken(Lexer::T_OPEN_PARENTHESIS) && ! $this->_lexer->isNextToken(Lexer::T_AT)) || - ! class_exists($name, false) + ! class_exists($name) ) { $this->_lexer->skipUntil(Lexer::T_AT);