mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 10:24:26 +02:00
- bugfix version 3.1.31 did fail under PHP 5.2
https://github.com/smarty-php/smarty/issues/365
This commit is contained in:
@@ -6,6 +6,8 @@
|
||||
ACP cache if present, add some is_file() checks to avoid possible warnings on filemtime()
|
||||
caused by above functions.
|
||||
https://github.com/smarty-php/smarty/issues/341
|
||||
- bugfix version 3.1.31 did fail under PHP 5.2
|
||||
https://github.com/smarty-php/smarty/issues/365
|
||||
|
||||
19.5.2017
|
||||
- change properties $accessMap and $obsoleteProperties from private to protected
|
||||
|
@@ -69,7 +69,7 @@ if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
|
||||
* Load Smarty_Autoloader
|
||||
*/
|
||||
if (!class_exists('Smarty_Autoloader')) {
|
||||
include __DIR__ . '/bootstrap.php';
|
||||
include dirname(__FILE__) . '/bootstrap.php';
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -108,7 +108,7 @@ class Smarty extends Smarty_Internal_TemplateBase
|
||||
/**
|
||||
* smarty version
|
||||
*/
|
||||
const SMARTY_VERSION = '3.1.32-dev-6';
|
||||
const SMARTY_VERSION = '3.1.32-dev-7';
|
||||
|
||||
/**
|
||||
* define variable scopes
|
||||
|
@@ -12,6 +12,6 @@
|
||||
* Load and register Smarty Autoloader
|
||||
*/
|
||||
if (!class_exists('Smarty_Autoloader')) {
|
||||
require __DIR__ . '/Autoloader.php';
|
||||
require dirname(__FILE__) . '/Autoloader.php';
|
||||
}
|
||||
Smarty_Autoloader::register();
|
||||
|
Reference in New Issue
Block a user