Re: broken adminuserchange.php
Timothy Martin <[email protected]> Sat, 07 Mar 2009 13:29:57 -0800
| Newsgroups | gmane.mail.exim.vexim.devel |
|---|---|
| Message-ID | <[email protected]> |
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