diff options
Diffstat (limited to 'mod/register.php')
-rw-r--r-- | mod/register.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/register.php b/mod/register.php index f74f57146..fc7301d52 100644 --- a/mod/register.php +++ b/mod/register.php @@ -230,7 +230,9 @@ function register_content(&$a) { $o = file_get_contents("view/register.tpl"); $o = replace_macros($o, array( - '$registertext' =>((x($a->config,'register_text'))? $a->config['register_text'] : "" ), + '$registertext' =>((x($a->config,'register_text')) + ? '<div class="error-message">' . $a->config['register_text'] . '</div>' + : "" ), '$sitename' => $a->get_hostname() )); return $o; |