Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.7 Preview Release
-
Fix Version/s: 1.10.2
-
Component/s: Zend_Loader
-
Labels:None
-
Fix Version Priority:Must Have
Description
The two view tests that it breaks are
ViewTests.php -> testGetHelperPath() and testGetFilterPath()
The problem comes in with this code in the PluginLoader load() Method
if (class_exists($className, false)) { $found = true; break; }
With the break it takes it out of the loop and never creates the $loadFile variable which sets the path to the class.
If you comment out this if statement everything is fine..
Attached is the patch to fix this. If you want me to fix it then I will.