diff options
author | Jared Dillard <jdillard@electricsheepfencing.com> | 2013-10-10 21:46:20 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-10-11 00:28:30 -0400 |
commit | b35bcd45b30a447b1814e5649d62b3beb5897a2c (patch) | |
tree | b0ea22a6335ea34805b5e331bf97047de20c7f92 | |
parent | 9f212aeae0851b8094dabfb841f4f377b6b7d42d (diff) | |
download | pfsense-b35bcd45b30a447b1814e5649d62b3beb5897a2c.zip pfsense-b35bcd45b30a447b1814e5649d62b3beb5897a2c.tar.gz |
added favicon to logged in pages
-rwxr-xr-x | usr/local/www/head.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr/local/www/head.inc b/usr/local/www/head.inc index 0bc1d00..9e4e525 100755 --- a/usr/local/www/head.inc +++ b/usr/local/www/head.inc @@ -15,6 +15,7 @@ $pagetitle = gentitle( $pgtitle ); <title><?php echo($config['system']['hostname'] . "." . $config['system']['domain'] . " - " . $pagetitle); ?></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="apple-touch-icon" href="/themes/<?php echo $g['theme']; ?>/apple-touch-icon.png"/> + <link rel="shortcut icon" href="/themes/<?php echo $g['theme']; ?>/images/icons/favicon.ico"/> <?php if (file_exists("{$g['www_path']}/themes/{$g['theme']}/table.css")): echo "<link type=\"text/css\" rel=\"stylesheet\" href=\"/themes/{$g['theme']}/table.css\" />"; |