diff --git a/bl-kernel/admin/views/plugins.php b/bl-kernel/admin/views/plugins.php index 0bd47d67..f2877248 100644 --- a/bl-kernel/admin/views/plugins.php +++ b/bl-kernel/admin/views/plugins.php @@ -40,7 +40,7 @@ foreach($plugins['all'] as $Plugin) echo '<td>'; echo $Plugin->description(); if( !$Plugin->isCompatible() ) { - echo '<div class="plugin-incompatible">This plugin is incompatible with Bludit v'.BLUDIT_VERSION.'</div>'; + echo '<div class="plugin-incompatible"><i class="uk-icon-exclamation-triangle"></i> This plugin is incompatible with Bludit v'.BLUDIT_VERSION.'</div>'; } echo '</td>'; diff --git a/bl-kernel/admin/views/themes.php b/bl-kernel/admin/views/themes.php index 66c7ed39..8b67ee73 100644 --- a/bl-kernel/admin/views/themes.php +++ b/bl-kernel/admin/views/themes.php @@ -38,7 +38,7 @@ foreach($themes as $theme) echo $theme['description']; if( !$theme['compatible'] ) { - echo '<div class="theme-incompatible">This theme is incompatible with Bludit v'.BLUDIT_VERSION.'</div>'; + echo '<div class="theme-incompatible"><i class="uk-icon-exclamation-triangle"></i> This theme is incompatible with Bludit v'.BLUDIT_VERSION.'</div>'; } echo '</td>';