mirror of
https://github.com/e107inc/e107.git
synced 2025-08-23 06:33:22 +02:00
This commit is contained in:
@@ -2209,12 +2209,12 @@ function libraryGetStatus($details)
|
||||
|
||||
if($details['installed'] == true)
|
||||
{
|
||||
$icon = $tp->toGlyph('glyphicon-ok');
|
||||
$icon = $tp->toGlyph('fa-check');
|
||||
$text = LAN_OK;
|
||||
return '<span class="text-success" data-toggle="tooltip" data-placement="top" title="' . $text . '">' . $icon . '</span>';
|
||||
}
|
||||
|
||||
$icon = $tp->toGlyph('glyphicon-remove');
|
||||
$icon = $tp->toGlyph('fa-remove');
|
||||
$text = $details['error'];
|
||||
return '<span class="text-danger" data-toggle="tooltip" data-placement="top" title="' . $text . '">' . $icon . '</span>';
|
||||
}
|
||||
|
@@ -2758,7 +2758,7 @@ class users_admin_form_ui extends e_admin_form_ui
|
||||
$btn = '<div class="btn-group pull-right">
|
||||
|
||||
<button aria-expanded="false" class="btn btn-default btn-secondary btn-user-action dropdown-toggle" data-toggle="dropdown">
|
||||
<span class="user-action-indicators" id="user-action-indicator-'.$user_id.'">'.e107::getParser()->toGlyph('cog').'</span>
|
||||
<span class="user-action-indicators" id="user-action-indicator-'.$user_id.'">'.e107::getParser()->toGlyph('fa-cog').'</span>
|
||||
<span class="caret"></span>
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
|
Reference in New Issue
Block a user