Tweak for PHP 7+
-
From PHP 7, the function “split” has been removed so users should replace
$keys = split(',',$atts['key']);
with
$keys = explode(',',$atts['key']);
in the file tally-graph.php
Aside from this, the plugin is still working great, after 7 years!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Tweak for PHP 7+’ is closed to new replies.