aboutsummaryrefslogtreecommitdiffstats
path: root/mod/register.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-11 20:03:36 -0700
committerfriendica <info@friendica.com>2014-09-11 20:03:36 -0700
commit3e97f71b33c6c05473410af350d287ee3981bcb5 (patch)
tree85a5707fb000fe1ecf1ad3043d6dacf77df0a915 /mod/register.php
parente00e55af57432a5379c4964bb6678887a3a4c8ba (diff)
downloadvolse-hubzilla-3e97f71b33c6c05473410af350d287ee3981bcb5.tar.gz
volse-hubzilla-3e97f71b33c6c05473410af350d287ee3981bcb5.tar.bz2
volse-hubzilla-3e97f71b33c6c05473410af350d287ee3981bcb5.zip
allow bbcode in register_text
Diffstat (limited to 'mod/register.php')
-rw-r--r--mod/register.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/register.php b/mod/register.php
index 0e33fa358..0cf1364b5 100644
--- a/mod/register.php
+++ b/mod/register.php
@@ -196,13 +196,13 @@ function register_content(&$a) {
$invite_code = ((x($_REQUEST,'invite_code')) ? strip_tags(trim($_REQUEST['invite_code'])) : "" );
-
+ require_once('include/bbcode.php');
$o = replace_macros(get_markup_template('register.tpl'), array(
'$title' => t('Registration'),
'$reg_is' => $registration_is,
- '$registertext' => get_config('system','register_text'),
+ '$registertext' => bbcode(get_config('system','register_text')),
'$other_sites' => $other_sites,
'$invitations' => get_config('system','invitation_only'),
'$invite_desc' => t('Membership on this site is by invitation only.'),