Hi all.
I have 2 bugs on a brand new install (just with the sample data) :
Admins panel >>> Notice: Undefined index: bypasslogout in …wwwwp-contentpluginssimple-pressadminpanel-adminsformsspa-admins-your-options-form.php on line 43
Themes panel >>> Notice: Undefined index: parent in …wwwwp-contentpluginssimple-pressadminpanel-themesformsspa-themes-list-form.php on line 86
And 2 others bug as soon as I update some options :
Global settings + “Update Global Options” >>> Error message on the “Options” panel >>> Notice: Undefined index: blockroles in …wwwwp-contentpluginssimple-pressadminpanel-optionssupportspa-options-prepare.php on line 30
Global settings + “Update Members Options” >>> Error message on the “User groupes” panel >>> Undefined index: sfsinglemembership in …wwwwp-contentpluginssimple-pressadminpanel-usergroupssupportspa-usergroups-prepare.php on line 20
I’ve made some test on “spa-usergroups-prepare.php” and I’ve found :
– before a click on Global settings + “Update Members Options”, $sfmemberopts array has this values :
array (size=3)
‘sfcheckformember’ => boolean true
‘sfsinglemembership’ => boolean false
‘sfhidestatus’ => boolean true
– after a click on Global settings + “Update Members Options”, $sfmemberopts array has this values :
array (size=2)
‘sfcheckformember’ => boolean true
‘sfhidestatus’ => boolean true
‘sfsinglemembership’ is not defined anymore after the first update. For sure it’s the same reason for the others bugs.