1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 12:48:26 +02:00

Merge pull request #71 from digitalartist/master

Fix to user_shortcodes.php
This commit is contained in:
e107steved
2013-01-01 03:19:07 -08:00

View File

@@ -376,7 +376,7 @@ class user_shortcodes extends e_shortcode
if(!vartrue($pref['profile_rate'])){ return; } if(!vartrue($pref['profile_rate'])){ return; }
if(!USER){ return "Login to rate this user"; } // TODO LAN if(!USER){ return "Login to rate this user"; } // TODO LAN
else{
switch ($parm) switch ($parm)
{ {
@@ -409,7 +409,7 @@ class user_shortcodes extends e_shortcode
} }
return ""; return "";
} }}