From b57020b42179addad683d92b848e51fd68d49b4f Mon Sep 17 00:00:00 2001 From: ADTC Date: Mon, 13 Mar 2017 21:41:29 +0800 Subject: [PATCH] Use an icon in the incompatibility warning message The incompatibility warning message has an exclamation triangle icon to call attention to it. Signed-off-by: ADTC --- bl-kernel/admin/views/plugins.php | 2 +- bl-kernel/admin/views/themes.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 ''; echo $Plugin->description(); if( !$Plugin->isCompatible() ) { - echo '
This plugin is incompatible with Bludit v'.BLUDIT_VERSION.'
'; + echo '
This plugin is incompatible with Bludit v'.BLUDIT_VERSION.'
'; } echo ''; 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 '
This theme is incompatible with Bludit v'.BLUDIT_VERSION.'
'; + echo '
This theme is incompatible with Bludit v'.BLUDIT_VERSION.'
'; } echo '';