1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02: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:
Nick Liu
2021-05-18 16:48:51 -05:00
parent 8d29f97bd2
commit 1874d3d936

View File

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