mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 18:34:27 +02:00
fixed {debug} and removed tabs in function.debug.php
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
* Purpose: popup debug window
|
* Purpose: popup debug window
|
||||||
* @link http://smarty.php.net/manual/en/language.function.debug.php {debug}
|
* @link http://smarty.php.net/manual/en/language.function.debug.php {debug}
|
||||||
* (Smarty online manual)
|
* (Smarty online manual)
|
||||||
* @author Monte Ohrt <monte@ispi.net>
|
* @author Monte Ohrt <monte@ispi.net>
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @param array
|
* @param array
|
||||||
* @param Smarty
|
* @param Smarty
|
||||||
@@ -23,10 +23,11 @@
|
|||||||
*/
|
*/
|
||||||
function smarty_function_debug($params, &$smarty)
|
function smarty_function_debug($params, &$smarty)
|
||||||
{
|
{
|
||||||
if($params['output']) {
|
if($params['output']) {
|
||||||
$smarty->assign('_smarty_debug_output',$params['output']);
|
$smarty->assign('_smarty_debug_output',$params['output']);
|
||||||
}
|
}
|
||||||
return $smarty->_generate_debug_output();
|
require_once(SMARTY_DIR . 'core' . DIRECTORY_SEPARATOR . 'core.display_debug_console.php');
|
||||||
|
return smarty_core_display_debug_console(null, $smarty);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* vim: set expandtab: */
|
/* vim: set expandtab: */
|
||||||
|
Reference in New Issue
Block a user