diff options
Diffstat (limited to 'Widgets/smarty/libs/sysplugins/smartyexception.php')
-rw-r--r-- | Widgets/smarty/libs/sysplugins/smartyexception.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Widgets/smarty/libs/sysplugins/smartyexception.php b/Widgets/smarty/libs/sysplugins/smartyexception.php deleted file mode 100644 index 3da16c27..00000000 --- a/Widgets/smarty/libs/sysplugins/smartyexception.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php -/** - * Smarty exception class - * - * @package Smarty - */ -class SmartyException extends Exception -{ - public static $escape = false; - - public function __toString() - { - return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- '; - } -} |