|
|
| Participants: |
Gints Neimanis and Petr Skoda
|
| Security Level: |
None
|
| Resolved date: |
06/Jul/07
|
| Affected Branches: |
MOODLE_18_STABLE
|
| Fixed Branches: |
MOODLE_18_STABLE
|
|
after fresh and successful upgrade from 1.6+ to 1.8 on first time login you got the error
Fatal error: Call to undefined function strislashes() in /var/www/moodle/auth/pam/auth.php on line 71
It is a typing error in file ./moodle/auth/pam/auth.php :
if (pam_auth(stripslashes($username), strislashes($password))) {
should be:
if (pam_auth(stripslashes($username), stripslashes($password))) {
|
|
Description
|
after fresh and successful upgrade from 1.6+ to 1.8 on first time login you got the error
Fatal error: Call to undefined function strislashes() in /var/www/moodle/auth/pam/auth.php on line 71
It is a typing error in file ./moodle/auth/pam/auth.php :
if (pam_auth(stripslashes($username), strislashes($password))) {
should be:
if (pam_auth(stripslashes($username), stripslashes($password))) { |
Show » |
made changes - 06/Jul/07 04:52 AM
| Field |
Original Value |
New Value |
|
Resolution
|
|
Fixed
[ 1
]
|
|
Status
|
Open
[ 1
]
|
Resolved
[ 5
]
|
|
Fix Version/s
|
|
1.8.2
[ 10220
]
|
|