diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-01 01:06:46 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-01 01:06:46 +0000 |
commit | b9a2603025483deefbf7636de3f6c0786e95d293 (patch) | |
tree | 5d2ece594fbed8a58874830c42d8182f025ef16b /templates/show_add_access_local.inc.php | |
parent | 1891fd835cc3cd60d7c3a2ec8bf90b51ca261bf0 (diff) | |
download | ampache-b9a2603025483deefbf7636de3f6c0786e95d293.tar.gz ampache-b9a2603025483deefbf7636de3f6c0786e95d293.tar.bz2 ampache-b9a2603025483deefbf7636de3f6c0786e95d293.zip |
Finish IPv6 support
Diffstat (limited to 'templates/show_add_access_local.inc.php')
-rw-r--r-- | templates/show_add_access_local.inc.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/show_add_access_local.inc.php b/templates/show_add_access_local.inc.php index cb6f4d43..32e8993d 100644 --- a/templates/show_add_access_local.inc.php +++ b/templates/show_add_access_local.inc.php @@ -70,16 +70,18 @@ <tr> <td><?php echo _('Start'); ?>:</td> <td> + <?php Error::display('start'); ?> <input type="text" name="start" value="<?php echo scrub_out($_REQUEST['start']); ?>" size="20" maxlength="15" /> </td> <td><?php echo _('End'); ?>:</td> <td> + <?php Error::display('end'); ?> <input type="text" name="end" value="<?php echo scrub_out($_REQUEST['end']); ?>" size="20" maxlength="15" /> </td> </tr> </table> <div class="formValidation"> - <?php Core::form_register('add_acl'); ?> + <?php echo Core::form_register('add_acl'); ?> <input class="button" type="submit" value="<?php echo _('Create ACL'); ?>" /> </div> </form> |