diff options
-rwxr-xr-x | docs/CHANGELOG.md | 2 | ||||
-rw-r--r-- | templates/show_add_access.inc.php | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c6838359..4a41c7bd 100755 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,8 @@ CHANGELOG 3.6-FUTURE ---------- +- Fixed ACL text field length to allow entry of IPv6 addresses (reported + by Baggypants) - Fixed regression preventing the use of an existing database during installation (reported by cjsmo) - Fixed operating on all catalogs via the web interface 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> |