forked from kevinowino869/mitrobill
update smarty, ganti SQL
This commit is contained in:
19
system/vendors/smarty/libs/sysplugins/smartyexception.php
vendored
Normal file
19
system/vendors/smarty/libs/sysplugins/smartyexception.php
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Smarty exception class
|
||||
*
|
||||
* @package Smarty
|
||||
*/
|
||||
class SmartyException extends Exception
|
||||
{
|
||||
public static $escape = false;
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function __toString()
|
||||
{
|
||||
return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- ';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user