[Plugin: More Fields] More fields fatal error
-
I got this error when I try to edit a post/page
Fatal error: Allowed memory size of 102760448 bytes exhausted (tried to allocate 67 bytes) in /var/www/html/dev/upgrade/wp-content/plugins/more-fields/more-fields-object.php on line 493I replaced more-fields-object.php line 490 and fixed it
if (count($range) == 2) {
with
if (count($range) == 2 && is_numeric($range[0]) && is_numeric($range[1])) {
Hope that helps.
- The topic ‘[Plugin: More Fields] More fields fatal error’ is closed to new replies.