summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-05-13 19:59:35 -0400
committerPaul Arthur <paul.arthur@flowerysong.com>2013-05-13 21:11:38 -0400
commit6e33efbe23d1791f182c428cd92ecc8935d3ca51 (patch)
treec0789afb6a688e23e2bc4df1689f53a4e5b6ba93 /templates
parentf661e4f6cf1e159888e16ddbb169c7126899f203 (diff)
downloadampache-6e33efbe23d1791f182c428cd92ecc8935d3ca51.tar.gz
ampache-6e33efbe23d1791f182c428cd92ecc8935d3ca51.tar.bz2
ampache-6e33efbe23d1791f182c428cd92ecc8935d3ca51.zip
Increase the field size in the ACL entry form
It wasn't large enough to enter IPv6 addresses. Fixes GH #24
Diffstat (limited to 'templates')
-rw-r--r--templates/show_add_access.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_add_access.inc.php b/templates/show_add_access.inc.php
index b2d03531..1e741c7f 100644
--- a/templates/show_add_access.inc.php
+++ b/templates/show_add_access.inc.php
@@ -85,7 +85,7 @@
}
else {
echo scrub_out($_REQUEST['start']);
- } ?>" size="20" maxlength="15" />
+ } ?>" size="20" />
</td>
<td><?php echo T_('End'); ?>:</td>
<td>
@@ -96,7 +96,7 @@
}
else {
echo scrub_out($_REQUEST['end']);
- } ?>" size="20" maxlength="15" />
+ } ?>" size="20" />
</td>
</tr>
</table>