From: Lo?c C. <lo...@us...> - 2001-06-13 18:13:33
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv9269/chat Modified Files: profile_reg.php3 Log Message: Increased the max allowed size for nicks, passwords and rooms names Index: profile_reg.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** profile_reg.php3 2001/06/10 14:56:06 1.16 --- profile_reg.php3 2001/06/13 18:13:29 1.17 *************** *** 309,313 **** <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 if (isset($pmcProfNick)) echo(htmlspecialchars($pmcProfNick)); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> <?php if (!$isRegDone && !$isMailFail) echo('<span class="error">*</span>'); ?> </td> --- 309,313 ---- <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 if (isset($pmcProfNick)) echo(htmlspecialchars($pmcProfNick)); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> <?php if (!$isRegDone && !$isMailFail) echo('<span class="error">*</span>'); ?> </td> *************** *** 320,324 **** <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 if (isset($pmcProfPassword)) echo(htmlspecialchars($pmcProfPassword)); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> <?php if (!$isRegDone && !$isMailFail) echo('<span class="error">*</span>'); ?> </td> --- 320,324 ---- <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 if (isset($pmcProfPassword)) echo(htmlspecialchars($pmcProfPassword)); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> <?php if (!$isRegDone && !$isMailFail) echo('<span class="error">*</span>'); ?> </td> *************** *** 358,362 **** <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 if (isset($pmcProfWebSite)) echo($pmcProfWebSite); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> </td> </tr> --- 358,362 ---- <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 if (isset($pmcProfWebSite)) echo($pmcProfWebSite); ?>"<?php if ($isRegDone || $isMailFail) echo(' readonly="readonly"'); ?> /> </td> </tr> |