diff --git a/_compile.php b/_compile.php index 4c0be778..4fd0f200 100644 --- a/_compile.php +++ b/_compile.php @@ -53,5 +53,6 @@ if ($_SESSION["lang"]) { $file = str_replace("\n", "", $file); $file = str_replace("", $_SESSION["lang"], $file); } +$file = str_replace("favicon.ico", "data:image/x-icon;base64," . base64_encode(file_get_contents("favicon.ico")), $file); file_put_contents($filename, $file); echo "$filename created.\n"; diff --git a/design.inc.php b/design.inc.php index f314065a..58463e24 100644 --- a/design.inc.php +++ b/design.inc.php @@ -9,7 +9,7 @@ function page_header($title) { <?php echo lang('phpMinAdmin') . " - $title"; ?> - + diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 00000000..ef958a09 Binary files /dev/null and b/favicon.ico differ