(Prior versions as well)

Lines 54 and 57 second call to isset should be removed

Line 54:
if (isset($contents[$i][$x]['text']) && zen_not_null(isset($contents[$i][$x]['text']))) {
should be
if (isset($contents[$i][$x]['text']) && zen_not_null($contents[$i][$x]['text'])) {



Line 57:
if (isset($contents[$i][$x]['text']) && zen_not_null(isset($contents[$i][$x]['text']))) {
should be
if (isset($contents[$i][$x]['text']) && zen_not_null($contents[$i][$x]['text'])) {