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

Fixes #543 - extra 'OR' on avatar selection. Also correct radio button alignment in bootstrap.

This commit is contained in:
Cameron
2014-08-20 04:23:42 -07:00
parent 33e3ef5b3c
commit 0408658901
3 changed files with 27 additions and 8 deletions

View File

@@ -602,8 +602,12 @@ class e_form
$text .= "<div style='margin-bottom:10px'>".LAN_USET_26."
<input class='tbox' name='file_userfile[avatar]' type='file' size='47' title=\"{$diz}\" />
</div>
<div class='divider'><span>OR</span></div>";
</div>";
if(count($avFiles) > 0)
{
$text .= "<div class='divider'><span>OR</span></div>";
}
}