diff options
author | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2010-01-07 19:56:04 -0500 |
---|---|---|
committer | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2010-01-07 19:56:04 -0500 |
commit | e62cd7f5662928977738f80990322b4433e67d51 (patch) | |
tree | 47f9c796ab495191496e6e208c77a1bc0b0c77ee /header.php | |
parent | 21608260d1b8a7bab9f8bab60bdc506af25985e6 (diff) | |
download | bayonetcms-e62cd7f5662928977738f80990322b4433e67d51.tar.gz |
Added favorite icon support.
git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2@456 c5b2fb0a-d05d-0410-98c8-828840a80ff6
Diffstat (limited to 'header.php')
-rw-r--r-- | header.php | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -16,7 +16,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ - + +global $config; ob_start(); $starttime = explode(' ', microtime()); $starttime = $starttime[1] + $starttime[0]; @@ -29,6 +30,10 @@ $starttime = $starttime[1] + $starttime[0]; <head> <title>3rd Infantry Division - 8 years strong - ArmaII Unit</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> +<?php if(isset($config['site']['favicon'])): ?> +<!--<link rel="shortcut icon" href="<?php echo $config['site']['favicon']; ?>" type="image/x-icon" />--> +<link rel="shortcut icon" href="<?php echo $config['site']['favicon']; ?>" type="image/png" /> +<?php endif; ?> <link rel="stylesheet" type="text/css" href="style.css" media="screen"/> <link rel="stylesheet" type="text/css" href="style_bbcode.css" media="screen"/> |