From: Lo?c C. <lo...@us...> - 2001-03-25 19:37:14
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv14053 Modified Files: index.lib.php3 Log Message: Add some comments for debugging and modify the copyright to include year 2001! ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/lib Index: index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/index.lib.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** index.lib.php3 2001/03/24 15:14:50 1.5 --- index.lib.php3 2001/03/25 19:37:10 1.6 *************** *** 612,616 **** <!-- // Misc vars - isModerator = <?php echo((isset($status) && ($status == "a" || $status == "m")) ? 1 : 0); ?>; imgHelpOff = new Image(15,15); imgHelpOff.src = path2Chat + "images/helpOff.gif"; imgHelpOn = new Image(15,15); imgHelpOn.src = path2Chat + "images/helpOn.gif"; --- 612,615 ---- *************** *** 642,645 **** --- 641,645 ---- // Color choice at the input frame; + isModerator = <?php echo((isset($status) && ($status == "a" || $status == "m")) ? 1 : 0); ?>; imgColor1 = new Image(4,20); imgColor1.src = path2Chat + "images/unselColor.gif"; imgColor2 = new Image(4,20); imgColor2.src = path2Chat + "images/selColor.gif"; *************** *** 780,788 **** global $Charset, $FontName, $FontSize; ! if ($title) echo("<TITLE>".APP_NAME."</TITLE>\n"); ?> <!-- ! These two lines are usefull for debugging purpose, please do not remove ! them! Release: phpMyChat 0.14.3 --> <META NAME="description" CONTENT="phpMyChat"> --- 780,790 ---- global $Charset, $FontName, $FontSize; ! if ($title) ! echo("\t" . '<TITLE>' . APP_NAME . '</TITLE>' . "\n"); ?> <!-- ! The lines below are usefull for debugging purpose, please do not remove them! ! Release: phpMyChat 0.14.3 ! © 2000-2001 The phpHeaven Team (http://www.phpheaven.net/) --> <META NAME="description" CONTENT="phpMyChat"> *************** *** 1106,1110 **** </TABLE> <SPAN CLASS="ChatCopy" dir="LTR"> ! © 2000 <A HREF="http://www.phpheaven.net/" CLASS="ChatLink">The phpHeaven Team</A> </SPAN> </FORM> --- 1108,1112 ---- </TABLE> <SPAN CLASS="ChatCopy" dir="LTR"> ! © 2000-2001 <A HREF="http://www.phpheaven.net/" CLASS="ChatLink">The phpHeaven Team</A> </SPAN> </FORM> |