fix indent for insert tags in debug console

This commit is contained in:
mohrt
2001-10-23 19:50:04 +00:00
parent 4874eb7256
commit 8faf0b902a
2 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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;