diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-05-27 21:44:44 -0500 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-05-27 21:44:44 -0500 |
commit | cb825735697c8315049c747ea80ff3ad84194593 (patch) | |
tree | e4fe8b07e50179311beaf493612f30acfc6b86ec /includes | |
parent | da0173f4df1f4892e9ae93526c29f5b61ae78819 (diff) | |
download | pathery-cb825735697c8315049c747ea80ff3ad84194593.tar.xz |
Apparently this is recommended to have browsers recognize the favicon (though some/most recognize it regardless)?
Anyways, it can't hurt.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/header.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/header.php b/includes/header.php index 15129c4..7085aea 100644 --- a/includes/header.php +++ b/includes/header.php @@ -18,6 +18,8 @@ function htmlHeader($css = array(), $title = 'Pathery', $desc = '', $scripts = a }
?>
<link rel="image_src" type="image/png" href="/images/linkdsp.png" />
+ <link rel="icon" href="/favicon.ico" type="image/x-icon"/>
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
<?php
foreach ($css as $c) {
echo " <link href=\"css/$c.css?v=$resourceVer.css\" rel=\"stylesheet\" type=\"text/css\" />\n";
|