-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
We're getting a lot of PHP notices like this:
[Tue Jan 21 18:07:58 2014] [error] [client 50.203.216.34] PHP Notice: Undefined offset: 1 in /path/to/core/components/fastfield/model/fastfield/fastfield.php on line 130, referer: http://www.oursite.com/
Comes down to this line:
$this->_content = isset($gArray[$tag[1]]) ? $this->stripTags($gArray[$tag[1]]) : '';
You have to check both arrays for being set or not: $gArray and $tag.
Reactions are currently unavailable