[Phpfreechat-svn] SF.net SVN: phpfreechat: [569] trunk
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-06-14 12:35:38
|
Revision: 569 Author: kerphi Date: 2006-06-14 05:35:26 -0700 (Wed, 14 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=569&view=rev Log Message: ----------- add the checkmd5 call into the index.php file Modified Paths: -------------- trunk/index.php trunk/misc/checkmd5 Modified: trunk/index.php =================================================================== --- trunk/index.php 2006-06-14 12:25:31 UTC (rev 568) +++ trunk/index.php 2006-06-14 12:35:26 UTC (rev 569) @@ -66,6 +66,7 @@ <div class="content"> <h2>See the quick demo</h2> <?php $chat->printChat(); ?> + <?php if (file_exists(dirname(__FILE__)."/checkmd5.php")) require_once dirname(__FILE__)."/checkmd5.php"; ?> </div> <div class="footer"> @@ -79,4 +80,4 @@ </div> <p>\xA92006 phpFreeChat</p> </div> -</body></html> \ No newline at end of file +</body></html> Modified: trunk/misc/checkmd5 =================================================================== --- trunk/misc/checkmd5 2006-06-14 12:25:31 UTC (rev 568) +++ trunk/misc/checkmd5 2006-06-14 12:35:26 UTC (rev 569) @@ -27,7 +27,7 @@ cd $PFC_PATH echo "<?php" > $TMP -echo 'echo "<h1>Checking phpfreechat files validity</h1>";' >> $TMP +echo 'echo "<h2>Checking phpfreechat files validity</h2>";' >> $TMP echo 'echo "<pre>\n";' >> $TMP for f in `find . -type f` do This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |