diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-04-15 16:04:01 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-04-15 16:04:01 +0000 |
commit | 0f4c3ac2abfc9f1a32a7e3d5a5cc428f885f620d (patch) | |
tree | 69291aa514d2fded1748980143209cbbd197bfe5 /templates/show_edit_access.inc.php | |
parent | 65e87ca3c52300697bc01071ed19be004ff8b943 (diff) | |
download | ampache-0f4c3ac2abfc9f1a32a7e3d5a5cc428f885f620d.tar.gz ampache-0f4c3ac2abfc9f1a32a7e3d5a5cc428f885f620d.tar.bz2 ampache-0f4c3ac2abfc9f1a32a7e3d5a5cc428f885f620d.zip |
remove maxlength on acl fields so that _all_ ipv6 addresses can be entered
Diffstat (limited to 'templates/show_edit_access.inc.php')
-rw-r--r-- | templates/show_edit_access.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_edit_access.inc.php b/templates/show_edit_access.inc.php index a2940439..da137ccd 100644 --- a/templates/show_edit_access.inc.php +++ b/templates/show_edit_access.inc.php @@ -48,12 +48,12 @@ <td><?php echo _('Start'); ?>:</td> <td> <?php Error::display('start'); ?> - <input type="text" name="start" value="<?php echo $access->f_start; ?>" size="20" maxlength="15" /> + <input type="text" name="start" value="<?php echo $access->f_start; ?>" size="20" /> </td> <td><?php echo _('End'); ?>:</td> <td> <?php Error::display('end'); ?> - <input type="text" name="end" value="<?php echo $access->f_end; ?>" size="20" maxlength="15" /> + <input type="text" name="end" value="<?php echo $access->f_end; ?>" size="20" /> </td> </tr> <tr> |