Bug #49849 ยป 49849.diff
t3lib/class.t3lib_timetrack.php (revision 6078) | ||
---|---|---|
* @see tslib_cObj::cObjGetSingle(), push()
|
||
*/
|
||
public function pull($content = '') {
|
||
$k = end($this->currentHashPointer);
|
||
$this->tsStackLog[$k]['endtime'] = microtime(TRUE);
|
||
$this->tsStackLog[$k]['content'] = $content;
|
||
if ($this->tsStackLevel > 0) {
|
||
$k = end($this->currentHashPointer);
|
||
$this->tsStackLog[$k]['endtime'] = microtime(TRUE);
|
||
$this->tsStackLog[$k]['content'] = $content;
|
||
$this->tsStackLevel--;
|
||
array_pop($this->tsStack[$this->tsStackPointer]);
|
||
array_pop($this->currentHashPointer);
|
||
$this->tsStackLevel--;
|
||
array_pop($this->tsStack[$this->tsStackPointer]);
|
||
array_pop($this->currentHashPointer);
|
||
}
|
||
}
|
||
/**
|