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
{{ message }}
This repository has been archived by the owner on Jul 18, 2018. It is now read-only.
For check_password function the uid retrieved from CAS is case sensitive. This are a bit problematic for final users, i suggest normalize uid to upper.
I change this sentence:
$uid = phpCAS::getUser(); (user_cas.php line 118)
to:
$uid = strtoupper(phpCAS::getUser());
The text was updated successfully, but these errors were encountered:
For check_password function the uid retrieved from CAS is case sensitive. This are a bit problematic for final users, i suggest normalize uid to upper.
I change this sentence:
$uid = phpCAS::getUser(); (user_cas.php line 118)
to:$uid = strtoupper(phpCAS::getUser());
The text was updated successfully, but these errors were encountered: