From: Lo?c C. <lo...@us...> - 2001-06-13 17:59:47
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv5915/chat Modified Files: profile_remind.php3 profile_edit.php3 Log Message: Increased the max allowed size for nicks, passwords and rooms names Index: profile_remind.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_remind.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** profile_remind.php3 2001/06/10 14:56:06 1.3 --- profile_remind.php3 2001/06/13 17:59:44 1.4 *************** *** 239,243 **** <td align="right" valign="top" nowrap="nowrap"><?php echo(L_SET_2); ?> :</td> <td valign="top"> ! <input type="text" name="pmcProfNick" size="11" maxlength="10" value="<?php echo(htmlspecialchars($pmcProfNick)); ?>" /> </td> </tr> --- 239,243 ---- <td align="right" valign="top" nowrap="nowrap"><?php echo(L_SET_2); ?> :</td> <td valign="top"> ! <input type="text" name="pmcProfNick" size="11" maxlength="20" value="<?php echo(htmlspecialchars($pmcProfNick)); ?>" /> </td> </tr> Index: profile_edit.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_edit.php3,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** profile_edit.php3 2001/06/10 14:56:06 1.15 --- profile_edit.php3 2001/06/13 17:59:44 1.16 *************** *** 345,349 **** { ?> ! <input type="text" name="pmcProfNick" size="11" maxlength="10" value="<?php echo(htmlspecialchars($pmcProfNick)); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> <?php if (!$isRegDone && !$isMailFail) --- 345,349 ---- { ?> ! <input type="text" name="pmcProfNick" size="11" maxlength="20" value="<?php echo(htmlspecialchars($pmcProfNick)); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> <?php if (!$isRegDone && !$isMailFail) *************** *** 365,369 **** <td align="right" valign="top" nowrap="nowrap"><?php echo(L_REG_7); ?> :</td> <td valign="top"> ! <input type="password" name="pmcProfPassword" size="11" maxlength="16" value="<?php echo(htmlspecialchars($dbSessionVars['authPassword'])); ?>" /> <?php if (!$isRegDone && !$isMailFail) echo('<span class="error">*</span>'); ?> </td> --- 365,369 ---- <td align="right" valign="top" nowrap="nowrap"><?php echo(L_REG_7); ?> :</td> <td valign="top"> ! <input type="password" name="pmcProfPassword" size="11" maxlength="20" value="<?php echo(htmlspecialchars($dbSessionVars['authPassword'])); ?>" /> <?php if (!$isRegDone && !$isMailFail) echo('<span class="error">*</span>'); ?> </td> *************** *** 403,407 **** <td align="right" valign="top" nowrap="nowrap"><?php echo(L_REG_32); ?> :</td> <td valign="top"> ! <input type="text" name="pmcProfWebSite" size="11" maxlength="64" value="<?php echo(htmlspecialchars($pmcProfWebSite)); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> </td> </tr> --- 403,407 ---- <td align="right" valign="top" nowrap="nowrap"><?php echo(L_REG_32); ?> :</td> <td valign="top"> ! <input type="text" name="pmcProfWebSite" size="11" maxlength="200" value="<?php echo(htmlspecialchars($pmcProfWebSite)); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> </td> </tr> |