From: <gem...@li...> - 2013-01-16 12:34:48
|
Revision: 1106 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=1106&view=rev Author: mennodekker Date: 2013-01-16 12:34:42 +0000 (Wed, 16 Jan 2013) Log Message: ----------- quickfix for fallback path Modified Paths: -------------- trunk/library/classes/Gems/Loader/LoaderAbstract.php Modified: trunk/library/classes/Gems/Loader/LoaderAbstract.php =================================================================== --- trunk/library/classes/Gems/Loader/LoaderAbstract.php 2013-01-16 12:16:50 UTC (rev 1105) +++ trunk/library/classes/Gems/Loader/LoaderAbstract.php 2013-01-16 12:34:42 UTC (rev 1106) @@ -103,7 +103,7 @@ foreach ($dirs as $prefix => $path) { $newdirs[$prefix . '_' . $this->cascade] = $path . '/' . strtr($this->cascade, '_', '/'); } - $this->_dirs = $newdirs; + $this->_dirs = array ('' =>'') + $newdirs; // Quick fix for fallback path } $this->_loader = new MUtil_Loader_PluginLoader($this->_dirs); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |