Przeglądaj źródła

Added a link to a favicon (icon in the browser's bar and tab)

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@1618 a333f486-631f-4898-b8df-5754b55c2be0
dflaven 13 lat temu
rodzic
commit
354505e65d

+ 2 - 0
application/itopwebpage.class.inc.php

@@ -624,6 +624,8 @@ EOF
             echo "</style>\n";
         }
 		echo "<link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"iTop\" href=\"".utils::GetAbsoluteUrlAppRoot()."pages/opensearch.xml.php\" />\n";
+		echo "<link rel=\"shortcut icon\" href=\"".utils::GetAbsoluteUrlAppRoot()."images/favicon.ico\" />\n";
+		
         echo "</head>\n";
         echo "<body>\n";
 

+ 1 - 0
application/webpage.class.inc.php

@@ -413,6 +413,7 @@ class WebPage
             }
             echo "</style>\n";
         }
+ 		echo "<link rel=\"shortcut icon\" href=\"".utils::GetAbsoluteUrlAppRoot()."images/favicon.ico\" />\n";
         echo "</head>\n";
         echo "<body>\n";
         echo self::FilterXSS($this->s_content);