From: Carsten K. <car...@us...> - 2001-12-26 14:00:34
|
Update of /cvsroot/phpwiki/phpwiki/lib In directory usw-pr-cvs1:/tmp/cvs-serv27673/phpwiki/lib Modified Files: Template.php Log Message: changed CSS_URL from constant into a variable for themes Index: Template.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/Template.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Template.php 2001/12/26 10:40:18 1.6 --- Template.php 2001/12/26 14:00:32 1.7 *************** *** 272,280 **** function setGlobalTokens () { ! global $user, $logo, $RCS_IDS; // FIXME: This a a bit of dangerous hackage. $this->qreplace('BROWSE', WikiURL('')); ! $this->qreplace('CSS_URL', DataURL(CSS_URL)); $this->qreplace('WIKI_NAME', WIKI_NAME); --- 272,280 ---- function setGlobalTokens () { ! global $user, $logo, $CSS_URL, $RCS_IDS; // FIXME: This a a bit of dangerous hackage. $this->qreplace('BROWSE', WikiURL('')); ! $this->qreplace('CSS_URL', DataURL($CSS_URL)); $this->qreplace('WIKI_NAME', WIKI_NAME); |