mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 10:24:26 +02:00
- bugfix correct Autoloader update of 2.3.2014 https://github.com/smarty-php/smarty/issues/199
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
09.03.2014
|
||||
- improvement rework of 'scope' attribute handling see see NEW_FEATURES.txt https://github.com/smarty-php/smarty/issues/194
|
||||
https://github.com/smarty-php/smarty/issues/186 https://github.com/smarty-php/smarty/issues/179
|
||||
- bugfix correct Autoloader update of 2.3.2014 https://github.com/smarty-php/smarty/issues/199
|
||||
|
||||
04.03.2016
|
||||
- bugfix change from 01.03.2016 will cause $smarty->isCached(..) failure if called multiple time for same template
|
||||
|
@@ -97,7 +97,7 @@ class Smarty_Autoloader
|
||||
if (is_file($file)) {
|
||||
include $file;
|
||||
} else if (isset(self::$rootClasses[ $_class ])) {
|
||||
$file = self::$SMARTY_SYSPLUGINS_DIR . self::$rootClasses[ $_class ] . '.php';
|
||||
$file = self::$SMARTY_DIR . self::$rootClasses[ $_class ];
|
||||
if (is_file($file)) {
|
||||
include $file;
|
||||
}
|
||||
|
Reference in New Issue
Block a user