[Phpfreechat-svn] SF.net SVN: phpfreechat: [455] branches/0.x/themes/default/templates
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-04-19 19:10:17
|
Revision: 455 Author: kerphi Date: 2006-04-19 12:10:11 -0700 (Wed, 19 Apr 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=455&view=rev Log Message: ----------- Bug fix: some php include paths were wrong Modified Paths: -------------- branches/0.x/themes/default/templates/chat.html.tpl.php branches/0.x/themes/default/templates/chat.js.tpl.php Modified: branches/0.x/themes/default/templates/chat.html.tpl.php =================================================================== --- branches/0.x/themes/default/templates/chat.html.tpl.php 2006-04-19 16:31:59 UTC (rev 454) +++ branches/0.x/themes/default/templates/chat.html.tpl.php 2006-04-19 19:10:11 UTC (rev 455) @@ -78,11 +78,9 @@ <div id="<?php echo $prefix; ?>misc6"></div> <script type="text/javascript"> - <!-- - - <?php include($c->getFileUrlFromTheme('templates/chat.js.tpl.php')); ?> - - --> + // <![CDATA[ + <?php include($c->getFilePathFromTheme('templates/chat.js.tpl.php')); ?> + // ]] </script> </div> </div> @@ -113,4 +111,4 @@ <![endif]--> */ -?> \ No newline at end of file +?> Modified: branches/0.x/themes/default/templates/chat.js.tpl.php =================================================================== --- branches/0.x/themes/default/templates/chat.js.tpl.php 2006-04-19 16:31:59 UTC (rev 454) +++ branches/0.x/themes/default/templates/chat.js.tpl.php 2006-04-19 19:10:11 UTC (rev 455) @@ -1,4 +1,4 @@ -<?php include($c->getFileUrlFromTheme('templates/chat-pre.js.tpl.php')); ?> +<?php include($c->getFilePathFromTheme('templates/chat-pre.js.tpl.php')); ?> /* preload smileys */ preloadImages( @@ -32,4 +32,4 @@ } <?php } ?> -<?php include($c->getFileUrlFromTheme('templates/chat-post.js.tpl.php')); ?> \ No newline at end of file +<?php include($c->getFilePathFromTheme('templates/chat-post.js.tpl.php')); ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |