|
From: <gem...@li...> - 2011-09-19 13:38:32
|
Revision: 38
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=38&view=rev
Author: mennodekker
Date: 2011-09-19 13:38:23 +0000 (Mon, 19 Sep 2011)
Log Message:
-----------
Fixed broken favicons
Modified Paths:
--------------
trunk/library/classes/GemsEscort.php
Modified: trunk/library/classes/GemsEscort.php
===================================================================
--- trunk/library/classes/GemsEscort.php 2011-09-19 11:21:51 UTC (rev 37)
+++ trunk/library/classes/GemsEscort.php 2011-09-19 13:38:23 UTC (rev 38)
@@ -594,7 +594,7 @@
{
// FAVICON
$icon = isset($this->project->favicon) ? $this->project->favicon : 'favicon.ico';
- if (file_exists(GEMS_ROOT_DIR . '/' . $icon)) {
+ if (file_exists(GEMS_WEB_DIR . '/' . $icon)) {
$this->view->headLink(array(
'rel' => 'shortcut icon',
'href' => $this->basepath->getBasePath() . '/' . $icon,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|