Home » PEAR Website » pearweb » Bug #9589
Link input field on requestform too short
Details
| Submitted | 2006-12-09 00:39 UTC |
|---|---|
| From | walter at php dot net |
| Assigned | cellog |
| Status | Closed |
| Package | pearweb |
| PHP Version | Irrelevant |
| OS | Irrelevant |
| Roadmaps | 1.15.0 |
Comments
[2006-12-09 00:39 UTC] walter at php dot net
Description:
------------
On http://pear.php.net/account-request-newpackage.php as of 2006-12-09, the input field "Link to browseable online source code" has a maximum length of 5 characters:
<input type="text" name="sourcecode" size="40" value="" maxlength="5" />
The logical purpose of this field seems to be entering a URL.
In that case, the maxlength should be much longer.
Test script:
---------------
lynx -dump -source http://pear.php.net/account-request-newpackage.php | grep '"sourcecode"'
Expected result:
----------------
<input type="text" name="sourcecode" size="40" value="" maxlength="255" />
Actual result:
--------------
<input type="text" name="sourcecode" size="40" value="" maxlength="5" />