Merge pull request #890 from tobiasd/bbcode_in_registertext

add bbcode support for the page register textfield (close #871)
This commit is contained in:
fabrixxm 2014-01-18 01:02:02 -08:00
commit d1befd9069
2 changed files with 4 additions and 7 deletions

View file

@ -1,6 +1,7 @@
<?php
require_once('include/email.php');
require_once('include/bbcode.php');
if(! function_exists('register_post')) {
function register_post(&$a) {
@ -263,7 +264,7 @@ function register_content(&$a) {
'$realpeople' => $realpeople,
'$regtitle' => t('Registration'),
'$registertext' =>((x($a->config,'register_text'))
? '<div class="error-message">' . $a->config['register_text'] . '</div>'
? bbcode($a->config['register_text'])
: "" ),
'$fillwith' => $fillwith,
'$fillext' => $fillext,