From f84dbce164f26af861c02b7dfe63ce8b43396364 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 2 Dec 2008 14:48:16 -0500 Subject: [PATCH] better instructions darcs-hash:20081202194816-5ed1f-93a18c7b978950a770b833e7dea9e1fd5bb71de8.gz --- actions/register.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/actions/register.php b/actions/register.php index a9cc7e9d61..a22ffca28e 100644 --- a/actions/register.php +++ b/actions/register.php @@ -153,10 +153,13 @@ class RegisterAction extends Action { if ($error) { common_element('p', 'error', $error); } else { + $instr = common_markup_to_html(_('With this form you can create a new account. ' . + 'You can then post notices and link up to friends and colleagues. '. + '(Have an [OpenID](http://openid.net/)? ' . + 'Try our [OpenID registration](%%action.openidlogin%%)!)')); + common_element_start('div', 'instructions'); - common_element('p', NULL, - _('With this form you can create a new account. You can then post notices and link up to friends and colleagues. '. - '(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)')); + common_raw($instr); common_element_end('div'); } }