summaryrefslogtreecommitdiffstats
path: root/templates/show_add_access_rpc.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-02-01 01:06:46 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-02-01 01:06:46 +0000
commitb9a2603025483deefbf7636de3f6c0786e95d293 (patch)
tree5d2ece594fbed8a58874830c42d8182f025ef16b /templates/show_add_access_rpc.inc.php
parent1891fd835cc3cd60d7c3a2ec8bf90b51ca261bf0 (diff)
downloadampache-b9a2603025483deefbf7636de3f6c0786e95d293.tar.gz
ampache-b9a2603025483deefbf7636de3f6c0786e95d293.tar.bz2
ampache-b9a2603025483deefbf7636de3f6c0786e95d293.zip
Finish IPv6 support
Diffstat (limited to 'templates/show_add_access_rpc.inc.php')
-rw-r--r--templates/show_add_access_rpc.inc.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/show_add_access_rpc.inc.php b/templates/show_add_access_rpc.inc.php
index c4600562..6b8afc21 100644
--- a/templates/show_add_access_rpc.inc.php
+++ b/templates/show_add_access_rpc.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>