<font> is deprecated

This commit is contained in:
Daku 2016-05-19 17:49:35 +01:00
parent d42a792e8b
commit acfed13634

View File

@ -138,10 +138,10 @@ function check_im_version() {
function eok($name, $value) { function eok($name, $value) {
echo "<br>$name ... "; echo "<br>$name ... ";
if($value) { if($value) {
echo "<font color='green'>ok</font>\n"; echo "<span style='color: green'>ok</span>\n";
} }
else { else {
echo "<font color='red'>failed</font>\n"; echo "<span style='color: green'>failed</span>\n";
} }
} }
// }}} // }}}
@ -171,7 +171,7 @@ function ask_questions() { // {{{
if(check_gd_version() == 0 && check_im_version() == 0) { if(check_gd_version() == 0 && check_im_version() == 0) {
$errors[] = " $errors[] = "
No thumbnailers cound be found - install the imagemagick No thumbnailers could be found - install the imagemagick
tools (or the PHP-GD library, of imagemagick is unavailable). tools (or the PHP-GD library, of imagemagick is unavailable).
"; ";
} }