1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 11:36:08 +02:00

Tooltips working again on frontend

This commit is contained in:
Cameron
2012-11-28 18:56:52 -08:00
parent 54ac401647
commit 0b03f8ed5a
6 changed files with 105 additions and 22 deletions

View File

@@ -118,7 +118,10 @@ class signup_shortcodes extends e_shortcode
function sc_signup_signup_text()
{
global $pref, $tp, $SIGNUP_TEXT;
global $SIGNUP_TEXT;
$pref = e107::getPref();
$tp = e107::getParser();
if($pref['signup_text'])
{
@@ -126,7 +129,7 @@ class signup_shortcodes extends e_shortcode
}
elseif($pref['user_reg_veri'])
{
return $SIGNUP_TEXT;
return $SIGNUP_TEXT." ";
}
}