[EMAIL PROTECTED] wrote:
> till wrote:
>
>> On Feb 6, 2008 9:47 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>>
>>
>>> (...)
>>> I don't suppose anyone could help me locate the required section of code
>>> so I can edit.
>>>
>>>
>> In trunk:
>> <http://trac.roundcube.net/browser/trunk/roundcubemail/index.php#L173>
>>
>> The code has pretty good inline documentation and since we feed
>> *everything* through index.php - that's the place to look at. I am not
>> sure which version you run, so you may have to "translate" line 173 to
>> your's.
>>
>> Hope that helps!
>> Till
>>
>>
>
>
> Hi Till
>
> Thanks so much for your reply .. however could I ask for some further
> help please.
>
> Would I change this line (173 on index.php)
>
> else
> {
> $OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' :
> 'loginfailed', 'warning');
> rcmail_kill_session();
> }
>
>
> To
>
> else
> {
> $OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' :
> 'loginfailed', 'warning');
> http://www.myloginpage.com
> rcmail_kill_session();
> }
>
>
> I'm not too sure on PHP .. any help would be appreciated!
>
> Thanks
>
> Dan
> _______________________________________________
> List info: http://lists.roundcube.net/users/
>
Update:
I managed to add this
else
{
header("Location:http://myloginsite.com");
$OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' :
'loginfailed', 'warning');
rcmail_kill_session();
}
}
So now it redirects back perfect - however it doesn't display the error
.. eg "login failed" etc.
Any ideas?
Thanks
_______________________________________________
List info: http://lists.roundcube.net/users/