Re: broken adminuserchange.php

Mika <[email protected]> Sat, 07 Mar 2009 23:55:26 +0100
Newsgroups gmane.mail.exim.vexim.devel
Message-ID <[email protected]>
Timothy Martin wrote:
> On Mar 7, 2009, at 12:51pm, Mika wrote:
>
>> Try replace...
>> <? echo _('Must be a full e-mail address');>!<br>
>> <? echo _('OR') ."<br>\n"; ?>
>>
>> ...with:
>> <?php echo _('Must be a full e-mail address');>!<br>
>> <?php echo _('OR') ."<br>\n"; ?>
>
> You both are missing the closing php tag for the first line (short or
> not):
>
> <?php echo _('Must be a full e-mail address'); ?>!<br>
> <?php echo _('OR') ."<br>\n"; ?>
>
> .tim
ack - true.
I missed that and just copy/pasted terry's lines.

^^what he said

Mika