here’s a fix for the php notice on the each() function
-
This seems to take care of the PHP notice you might be getting on this plugin:
The each() function is deprecated. This message will be suppressed on further calls
Type: PHP Deprecated
Line: 2222
File: wp-content/plugins/dynamic-to-top/inc/cssmin-v3.0.1.phpIn the file noted, at line 2222, change this:
while (list($i, $path) = each($paths))
to this:
foreach ($paths as $i => $path)
- The topic ‘here’s a fix for the php notice on the each() function’ is closed to new replies.