1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 01:19:44 +01:00

adding missing else tag to user ragting shortcode

This commit is contained in:
Michael Sackett 2012-12-31 23:48:30 -05:00
parent 992d88ddb6
commit 41ec5bf4d2

View File

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