mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 12:48:24 +01:00
Fix PHP warning: Undefined array key "" in shortcode_handler.php:1362
``` Undefined array key "", Line 1362 of /home/deltik/public_html/e107_handlers/shortcode_handler.php ```
This commit is contained in:
parent
8d29f97bd2
commit
1874d3d936
@ -1359,7 +1359,7 @@ class e_parse_shortcode
|
||||
}
|
||||
}
|
||||
|
||||
if(E107_DBG_BBSC && $this->wrapperDebugDone[$this->wrapper]==false && !empty($this->wrapper))
|
||||
if(E107_DBG_BBSC && !empty($this->wrapper) && $this->wrapperDebugDone[$this->wrapper]==false)
|
||||
{
|
||||
list($wrapTmpl, $wrapID1, $wrapID2) = explode('/',$this->wrapper,3);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user