[Plugin: WP Retina 2x] PHP Notice Logging
-
Hello-
I’m noticing a lot of notices in our PHP error logs due to the $_GET ‘ms’ index being blank:
PHP Notice: Undefined index: ms in [WP directory]/wp-content/plugins/wp-retina-2x/wr2x_retinaimages.php on line 6, referer: [URL]
What we’ve had to do is change the wr2x_retinaimages.php on line 6 from:
if ($_GET['ms'] && $_GET['ms'] === 'true') {
to:
if (isset($_GET['ms']) && $_GET['ms'] === 'true') {
which solves the problem. But this will obviously be overwritten any time the plugin updates. Suggestions?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘[Plugin: WP Retina 2x] PHP Notice Logging’ is closed to new replies.