Warning my-wp-login-logo/views/dashboard.php
-
I get a warning when I switch to PHP 8.0 in:
my-wp-login-logo/views/dashboard.phpIn line 21:
if($_POST['update_MyWP_login_logo'] == 'update')
Wouldn’t it be better:
if(isset($_POST['update_MyWP_login_logo']) && $_POST['update_MyWP_login_logo'] == 'update')
to use?
- The topic ‘Warning my-wp-login-logo/views/dashboard.php’ is closed to new replies.