|
From: Lo?c C. <lo...@us...> - 2001-06-13 17:59:47
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv5915/chat/lib/index_libs Modified Files: main_index.lib.php3 Log Message: Increased the max allowed size for nicks, passwords and rooms names Index: main_index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -r1.36 -r1.37 *** main_index.lib.php3 2001/06/12 19:46:14 1.36 --- main_index.lib.php3 2001/06/13 17:59:44 1.37 *************** *** 607,611 **** <!-- 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/) --> --- 607,611 ---- <!-- The lines below are usefull for debugging purpose, please do not remove them! ! Release: phpMyChat 0.15.0-dev © 2000-2001 The phpHeaven Team (http://www.phpheaven.net/) --> *************** *** 809,813 **** <tr class="chatCell"> <td align="center" class="chatCell"> ! <table border="0" class="chatTable"> <?php // Displays the flags for languages if necessary --- 809,813 ---- <tr class="chatCell"> <td align="center" class="chatCell"> ! <table border="0" width="100%" class="chatTable"> <?php // Displays the flags for languages if necessary *************** *** 855,859 **** <td align="<?php echo($cellAlign); ?>" valign="top" class="chatCell" nowrap="nowrap"><?php echo(L_SET_2); ?> :</td> <td valign="top" class="chatCell"> ! <input id="testSize" type="text" name="pmcNick" size="11" maxlength="10" value="<?php echo(htmlspecialchars($layoutNick)); ?>" class="chatBox" /> </td> </tr> --- 855,859 ---- <td align="<?php echo($cellAlign); ?>" valign="top" class="chatCell" nowrap="nowrap"><?php echo(L_SET_2); ?> :</td> <td valign="top" class="chatCell"> ! <input id="testSize" type="text" name="pmcNick" size="11" maxlength="20" value="<?php echo(htmlspecialchars($layoutNick)); ?>" class="chatBox" /> </td> </tr> *************** *** 861,865 **** <td align="<?php echo($cellAlign); ?>" valign="top" class="chatCell" nowrap="nowrap"><?php echo(L_REG_1); ?> :</td> <td valign="top" class="chatCell" nowrap="nowrap"> ! <input type="password" name="pmcPassword" size="11" maxlength="16" class="chatBox" /> <?php if (!C_REQUIRE_REGISTER) --- 861,865 ---- <td align="<?php echo($cellAlign); ?>" valign="top" class="chatCell" nowrap="nowrap"><?php echo(L_REG_1); ?> :</td> <td valign="top" class="chatCell" nowrap="nowrap"> ! <input type="password" name="pmcPassword" size="11" maxlength="20" class="chatBox" /> <?php if (!C_REQUIRE_REGISTER) *************** *** 1016,1020 **** </td> <td valign="top" class="chatCell"> ! <input type="text" name="createRoomName" size="11" maxlength="10"<?php if (!$defaultRoomFound && $layoutRoom != '') echo(' value="' . htmlspecialchars($layoutRoom) . '"'); ?> class="chatBox" onchange="pmcResetRoomBox('create');" /> </td> </tr> --- 1016,1020 ---- </td> <td valign="top" class="chatCell"> ! <input type="text" name="createRoomName" size="11" maxlength="20"<?php if (!$defaultRoomFound && $layoutRoom != '') echo(' value="' . htmlspecialchars($layoutRoom) . '"'); ?> class="chatBox" onchange="pmcResetRoomBox('create');" /> </td> </tr> |