1
0
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:
Nick Liu 2021-05-18 16:48:51 -05:00
parent 8d29f97bd2
commit 1874d3d936
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637

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