PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » PEAR Website » pearweb » Bug #9589

Link input field on requestform too short

Details

Submitted2006-12-09 00:39 UTC
Fromwalter at php dot net
Assignedcellog
StatusClosed
Packagepearweb
PHP VersionIrrelevant
OSIrrelevant
Roadmaps1.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" />