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

BS5 fixes.

This commit is contained in:
Cameron
2020-12-30 07:57:43 -08:00
parent 072c2a129a
commit 3ad4964b2d
3 changed files with 9 additions and 5 deletions

View File

@@ -4521,8 +4521,12 @@ class e_parser
}
$title = (ADMIN) ? $image : $tp->toAttribute($userData['user_name']);
$shape = (!empty($options['shape'])) ? 'img-' .$options['shape'] : 'img-rounded rounded';
$shape = (!empty($options['shape'])) ? 'img-' .$options['shape'] : 'img-rounded rounded ';
if($shape === 'img-circle')
{
$shape .= " rounded-circle";
}
if(!empty($options['type']) && $options['type'] === 'url')
{