diff options
| author | spiderr <spiderr@bitweaver.org> | 2025-05-24 18:25:09 -0400 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2025-05-24 18:25:09 -0400 |
| commit | cd3db2b4a921f119758b967968f35f6e0cd63922 (patch) | |
| tree | dccdd13fc18bebb14b47f600ce3a922144ac4001 | |
| parent | a6e569c0c1dc4aae4cf9ceec64f34d51f44cd053 (diff) | |
| download | themes-cd3db2b4a921f119758b967968f35f6e0cd63922.tar.gz themes-cd3db2b4a921f119758b967968f35f6e0cd63922.tar.bz2 themes-cd3db2b4a921f119758b967968f35f6e0cd63922.zip | |
drop use of Smarty 2.0 backwards compatibility wrapper SmartyBC
| -rw-r--r-- | includes/classes/BitSmarty.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/includes/classes/BitSmarty.php b/includes/classes/BitSmarty.php index 52b3f28..1862ec2 100644 --- a/includes/classes/BitSmarty.php +++ b/includes/classes/BitSmarty.php @@ -14,7 +14,7 @@ * required setup */ -require_once( EXTERNAL_LIBS_PATH.'smarty/libs/SmartyBC.class.php' ); +require_once( EXTERNAL_LIBS_PATH.'smarty/libs/Smarty.class.php' ); /** @@ -34,7 +34,8 @@ class PermissionCheck { * * @package kernel */ -class BitSmarty extends SmartyBC { + +class BitSmarty extends Smarty { protected $mCompileRsrc; |
