[Phpfreechat-svn] SF.net SVN: phpfreechat:[1254] trunk/src/pfcglobalconfig.class.php
Status: Beta
Brought to you by:
kerphi
|
From: <ke...@us...> - 2008-11-25 17:54:19
|
Revision: 1254
http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1254&view=rev
Author: kerphi
Date: 2008-11-25 17:54:09 +0000 (Tue, 25 Nov 2008)
Log Message:
-----------
Fixes a wrong theme_url calculation that could append on special servers configurations (thanks to xman - sourceforge bug 2329644)
Modified Paths:
--------------
trunk/src/pfcglobalconfig.class.php
Modified: trunk/src/pfcglobalconfig.class.php
===================================================================
--- trunk/src/pfcglobalconfig.class.php 2008-11-10 09:40:09 UTC (rev 1253)
+++ trunk/src/pfcglobalconfig.class.php 2008-11-25 17:54:09 UTC (rev 1254)
@@ -921,7 +921,7 @@
$this->theme_path.'/'.$this->theme,
$this->data_public_path.'/themes/'.$this->theme);
}
- $this->theme_url = $this->theme_default_url;
+ $this->theme_url = $this->data_public_url.'/themes';
}
// if the user do not have an existing prototype.js library, we use the embeded one
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|