Ticket #613 (closed Bug report: fixed)
Fatal error: Call to a member function getAuthenticator() on a non-object in ..../Authentificator.phpon line 203
| Reported by: | Helene Gauthier <webmaster@…> | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | Not yet assigned to a Milestone |
| Component: | Auth server, Feature request | Version: | |
| Keywords: | getAuthenticator | Cc: |
Description
Je recevais cette erreur sur une des installations de wifidog que j'ai testée
Le problème a été réglé en modifiant la ligne 150 de Authentificator.php
Voici les lignes initiales
foreach ($network_array as $network) {
if ($network->getName() == $default_network)
$default_network_param = $network->getId();
}
Voici le slignes modifiées
foreach ($network_array as $network) {
if ($network->_row['name'] == $default_network->_row['name'])
$default_network_param = $network->getId();
}
Pourtant, le script n'a pas besoin d'être modifié sur cetains serveurs
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
