first commit

This commit is contained in:
aschwarz
2023-03-14 07:16:04 +01:00
commit 6bbedc25ab
2239 changed files with 392206 additions and 0 deletions

View 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) . ' <-- ';
}
}