You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a Top level menu you get an error: Notice: Undefined index: in/wp-content/plugins/Admin-Page-Class-master/admin-page-class/admin-page-class.php on line 277
In the current version of Wordpress the "top" was dropped, I guess. Deleting the substring corrects the error. Original line 277: $this->Top_Slug = $args['menu']['top'];
Edited and working line 277: $this->Top_Slug = $args['menu'];
Sorry! Completely new to contributing to Github, so I haven't figured out how to add the edited file yet.. ;-)
The text was updated successfully, but these errors were encountered:
When creating a Top level menu you get an error:
Notice: Undefined index: in/wp-content/plugins/Admin-Page-Class-master/admin-page-class/admin-page-class.php on line 277
In the current version of Wordpress the "top" was dropped, I guess. Deleting the substring corrects the error.
Original line 277:
$this->Top_Slug = $args['menu']['top'];
Edited and working line 277:
$this->Top_Slug = $args['menu'];
Sorry! Completely new to contributing to Github, so I haven't figured out how to add the edited file yet.. ;-)
The text was updated successfully, but these errors were encountered: