mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-15 21:45:21 +02:00
- bugfix smarty.class and internal.security_handler
- added compile_check configuration - added all setter/getter methodes
This commit is contained in:
25
libs/sysplugins/method.enabledebugging.php
Normal file
25
libs/sysplugins/method.enabledebugging.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Smarty method enableDebugging
|
||||
*
|
||||
* Enable debugging
|
||||
*
|
||||
* @package Smarty
|
||||
* @subpackage SmartyMethod
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
|
||||
/**
|
||||
* Smarty class enableDebugging
|
||||
*
|
||||
* Enable debugging
|
||||
*/
|
||||
class Smarty_Method_EnableDebugging extends Smarty_Internal_Base {
|
||||
public function execute()
|
||||
{
|
||||
return $this->smarty->debugging = true;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user