1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Added missing Shortcode debug info

This commit is contained in:
Cameron
2013-04-29 19:38:26 -07:00
parent 5bf82bace4
commit 2993fb1504
2 changed files with 24 additions and 16 deletions

View File

@@ -453,11 +453,12 @@ class e107_db_debug {
{
return FALSE;
}
$this -> scbbcodes[$this -> scbcount]['type'] = $type;
$this -> scbbcodes[$this -> scbcount]['code'] = $code;
$this -> scbbcodes[$this -> scbcount]['parm'] = htmlentities($parm);
$this -> scbbcodes[$this -> scbcount]['details'] = $details;
$this -> scbcount ++;
$this->scbbcodes[$this->scbcount]['type'] = $type;
$this->scbbcodes[$this->scbcount]['code'] = $code;
$this->scbbcodes[$this->scbcount]['parm'] = (string)$parm;
$this->scbbcodes[$this->scbcount]['details'] = $details;
$this->scbcount ++;
}
function Show_SC_BB()