Separate style

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@128 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2007-07-11 12:07:17 +00:00
parent f79805fbf8
commit 1cf0ea5cd5
2 changed files with 2 additions and 15 deletions

View File

@@ -54,5 +54,6 @@ if ($_SESSION["lang"]) {
$file = str_replace("<?php echo get_lang(); ?>", $_SESSION["lang"], $file);
}
$file = str_replace("favicon.ico", "data:image/x-icon;base64," . base64_encode(file_get_contents("favicon.ico")), $file);
$file = str_replace('<link rel="stylesheet" type="text/css" href="default.css" />', "<style type='text/css'>\n" . file_get_contents("default.css") . "</style>", $file);
file_put_contents($filename, $file);
echo "$filename created.\n";