ConFoo Montreal 2026: Call for Papers

Voting

: min(zero, zero)?
(Example: nine)

The Note You're Voting On

j[no_spam_please] at [thx]jessepearson dot net
18 years ago
In the function below, you need to update two lines if you don't want php to throw warnings.

change these two:
$elements[$index]['attributes'] = $tag['attributes'];
$elements[$index]['content'] = $tag['value'];

to this:
$elements[$index]['attributes'] = empty($tag['attributes']) ? "" : $tag['attributes'];
$elements[$index]['content'] = empty($tag['value']) ? "" : $tag['value'];

<< Back to user notes page

To Top