I'm at a complete loss Ray.
I added the code you recommended and then put this in at line 89 of set_sessions.php:
print_r($_SESSION['redirectGoTo']);
echo'<br>';
print_r($_SESSION['redirectGoTo']['successRedirect']);
die;
The old behavior correctly redirects me to http://vc.dev/alf/cms/smallgroups/edit.php?smallgroup_id=35#tab1 and with the die statement printed this:
Array ( [connection] => 0 [database] => vinesine_local [tableName] => access_userlogin [columns] => Array ( [0] => username [1] => password [2] => active ) [columnValues] => Array ( [0] => jason.o.brown@gmail.com [1] => b720a11cc6da338177c5dc6a28b20dadb8e7ebe2 [2] => 1 ) [columnTypes] => Array ( [0] => text [1] => text [2] => int ) [sessionColumns] => Array ( [0] => userlogin_id [1] => username ) [sessionNames] => Array ( [0] => userlogin_id [1] => username ) [successRedirect] => /alf/cms/smallgroups/edit.php?smallgroup_id=35#tab1 [failRedirect] => login.php?failedLogin=1 [gotoPreviousURL] => 1 [keepQueryString] => )
/alf/cms/smallgroups/edit.php?smallgroup_id=35#tab1
The new behavior redirects me to http://vc.dev/includes/set_sessions.php?loggedIn=1# and with the die statement prints this:
Array ( [successRedirect] => #tab1 )
#tab1