diff options
author | Marcel Korpel <marcel.korpel@gmail.com> | 2015-07-19 22:32:05 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-08-08 12:59:24 +0200 |
commit | cb9c0d2477480b63294854ce2abf7d9a34059ee6 (patch) | |
tree | fc991fef524abc27c0329421c1091eb551e62f81 /web/html | |
parent | 7927a6decd07bb80223ea22bf1db395aa7c12cc4 (diff) | |
download | aurweb-cb9c0d2477480b63294854ce2abf7d9a34059ee6.tar.xz |
Surround message with <p> tags
Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/register.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/register.php b/web/html/register.php index 014d802..cb3e8dd 100644 --- a/web/html/register.php +++ b/web/html/register.php @@ -25,7 +25,7 @@ if (in_request("Action") == "NewAccount") { in_request("PK")); } else { - print __("Use this form to create an account."); + print '<p>' . __("Use this form to create an account.") . '</p>'; display_account_form("NewAccount", "", "", "", "", "", "", "", $LANG); } |