summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspiderr <spiderr@bitweaver.org>2025-05-24 18:25:09 -0400
committerspiderr <spiderr@bitweaver.org>2025-05-24 18:25:09 -0400
commitcd3db2b4a921f119758b967968f35f6e0cd63922 (patch)
treedccdd13fc18bebb14b47f600ce3a922144ac4001
parenta6e569c0c1dc4aae4cf9ceec64f34d51f44cd053 (diff)
downloadthemes-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.php5
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;