witzawitz
Results 1 - 1 of 1
bywitzawitz, November 10, 2010
The small problem is that login failed message is shown as message not as error. To fix this you should change line in plugins/system/redirect_failed_login.php
$mainframe->redirect($redirect_destination, $redirect_message);
to
JFactory::getApplication()->enqueueMessage($redirect_message, 'error');
$mainframe->redirect( $redirect_destination);
Joomla 1.5 and PHP5 required.
$mainframe->redirect($redirect_destination, $redirect_message);
to
JFactory::getApplication()->enqueueMessage($redirect_message, 'error');
$mainframe->redirect( $redirect_destination);
Joomla 1.5 and PHP5 required.

