* move all the libs into the correct folders * libs folder is now called lib * Smarty update to 3.1.30 * main config update with / is now set via core variable (dynamic)
17 lines
296 B
PHP
17 lines
296 B
PHP
<?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) . ' <-- ';
|
|
}
|
|
}
|