[Phpfreechat-svn] SF.net SVN: phpfreechat: [1205] trunk/demo
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-11-03 16:09:18
|
Revision: 1205 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1205&view=rev Author: kerphi Date: 2007-11-03 09:09:23 -0700 (Sat, 03 Nov 2007) Log Message: ----------- Correct some depreciated code Modified Paths: -------------- trunk/demo/demo1_simple.php trunk/demo/demo50_customized_usermetadata.php Modified: trunk/demo/demo1_simple.php =================================================================== --- trunk/demo/demo1_simple.php 2007-11-03 16:04:33 UTC (rev 1204) +++ trunk/demo/demo1_simple.php 2007-11-03 16:09:23 UTC (rev 1205) @@ -12,9 +12,6 @@ <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>phpFreeChat demo</title> - - <?php $chat->printJavascript(); ?> - <?php $chat->printStyle(); ?> </head> <body> Modified: trunk/demo/demo50_customized_usermetadata.php =================================================================== --- trunk/demo/demo50_customized_usermetadata.php 2007-11-03 16:04:33 UTC (rev 1204) +++ trunk/demo/demo50_customized_usermetadata.php 2007-11-03 16:09:23 UTC (rev 1205) @@ -16,10 +16,6 @@ <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>phpFreeChat demo</title> - - <?php $chat->printJavascript(); ?> - <?php $chat->printStyle(); ?> - </head> <body> @@ -39,7 +35,7 @@ <?php // print the current file echo "<h2>The customized javascript</h2>"; - $filename = dirname(__FILE__).'/demo50_data/mytheme/customize.js'; + $filename = dirname(__FILE__).'/demo50_data/mytheme/customize.js.php'; echo "<p><code>".$filename."</code></p>"; echo "<pre style=\"margin: 0 50px 0 50px; padding: 10px; background-color: #DDD;\">"; $content = file_get_contents($filename); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |