Code Quality Issues
-
There are several issues that should be resolved..
The called constructor method for WP_Widget in Membee_Nav_Menu_Widget is <strong>deprecated</strong> since version 4.3.0! Use <pre>__construct()</pre> instead.
Undefined index: loggedin in /wp-content/plugins/membees-member-login-widget/membee-login.php on line 64
– can be resolved by usingisset()
instead of== true
Undefined index: error in /wp-content/plugins/membees-member-login-widget/mvc/v.php on line 200
– can be resolved by usingisset()
instead of== true
- In
c.php
theprepare_redirect
andsign_user_in
methods use redirects that are harded tohttp
protocol. Perhaps perform a check for ssl and usehttps
if available - In
m.php
useproperty_exists
before accessinguserID
, because in some instances it has failedif ( property_exists( $userdata, 'UserID' ) )
- The topic ‘Code Quality Issues’ is closed to new replies.