mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 10:24:26 +02:00
fix indent for insert tags in debug console
This commit is contained in:
@@ -965,7 +965,7 @@ function _generate_debug_output() {
|
|||||||
if ($this->debugging) {
|
if ($this->debugging) {
|
||||||
$this->_included_tpls[] = array('type' => 'insert',
|
$this->_included_tpls[] = array('type' => 'insert',
|
||||||
'filename' => 'insert_'.$name,
|
'filename' => 'insert_'.$name,
|
||||||
'depth' => ++$this->_inclusion_depth,
|
'depth' => $this->_inclusion_depth,
|
||||||
'exec_time' => $this->_get_microtime() - $debug_start_time);
|
'exec_time' => $this->_get_microtime() - $debug_start_time);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -994,7 +994,7 @@ function _run_insert_handler($args)
|
|||||||
if ($this->debugging) {
|
if ($this->debugging) {
|
||||||
$this->_included_tpls[] = array('type' => 'insert',
|
$this->_included_tpls[] = array('type' => 'insert',
|
||||||
'filename' => 'insert_'.$args['name'],
|
'filename' => 'insert_'.$args['name'],
|
||||||
'depth' => ++$this->_inclusion_depth,
|
'depth' => $this->_inclusion_depth,
|
||||||
'exec_time' => $this->_get_microtime() - $debug_start_time);
|
'exec_time' => $this->_get_microtime() - $debug_start_time);
|
||||||
}
|
}
|
||||||
return $content;
|
return $content;
|
||||||
|
@@ -965,7 +965,7 @@ function _generate_debug_output() {
|
|||||||
if ($this->debugging) {
|
if ($this->debugging) {
|
||||||
$this->_included_tpls[] = array('type' => 'insert',
|
$this->_included_tpls[] = array('type' => 'insert',
|
||||||
'filename' => 'insert_'.$name,
|
'filename' => 'insert_'.$name,
|
||||||
'depth' => ++$this->_inclusion_depth,
|
'depth' => $this->_inclusion_depth,
|
||||||
'exec_time' => $this->_get_microtime() - $debug_start_time);
|
'exec_time' => $this->_get_microtime() - $debug_start_time);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -994,7 +994,7 @@ function _run_insert_handler($args)
|
|||||||
if ($this->debugging) {
|
if ($this->debugging) {
|
||||||
$this->_included_tpls[] = array('type' => 'insert',
|
$this->_included_tpls[] = array('type' => 'insert',
|
||||||
'filename' => 'insert_'.$args['name'],
|
'filename' => 'insert_'.$args['name'],
|
||||||
'depth' => ++$this->_inclusion_depth,
|
'depth' => $this->_inclusion_depth,
|
||||||
'exec_time' => $this->_get_microtime() - $debug_start_time);
|
'exec_time' => $this->_get_microtime() - $debug_start_time);
|
||||||
}
|
}
|
||||||
return $content;
|
return $content;
|
||||||
|
Reference in New Issue
Block a user