summaryrefslogtreecommitdiffstats
path: root/templates/show_add_access.inc
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-09-08 14:47:21 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-09-08 14:47:21 +0000
commitb9561f3f7a17a45dbb64125964fa6337afe0debc (patch)
tree454d98885cf437a1d30199e72e4b86d98523c877 /templates/show_add_access.inc
parentad4feafc3fae2096ea4c7402d0ff0a1e126ad8f0 (diff)
downloadampache-b9561f3f7a17a45dbb64125964fa6337afe0debc.tar.gz
ampache-b9561f3f7a17a45dbb64125964fa6337afe0debc.tar.bz2
ampache-b9561f3f7a17a45dbb64125964fa6337afe0debc.zip
remoted the last of the short tags
Diffstat (limited to 'templates/show_add_access.inc')
-rw-r--r--templates/show_add_access.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_add_access.inc b/templates/show_add_access.inc
index 2d9f1074..4c1888b9 100644
--- a/templates/show_add_access.inc
+++ b/templates/show_add_access.inc
@@ -33,25 +33,25 @@
<p><?php print _("Use the form below to add a host that you want to have access to your Ampache catalog."); ?></p>
-<form name="update_catalog" method="post" enctype="multipart/form-data" action="<?= conf('web_path'); ?>/admin/access.php">
+<form name="update_catalog" method="post" enctype="multipart/form-data" action="<?php echo conf('web_path'); ?>/admin/access.php">
<table cellpadding="5" cellspacing="0" border="0">
<tr>
<td><?php print _("Name"); ?>: </td>
<td>
- <input type="text" name="name" value="<?= $_REQUEST['name']; ?>" size="30" />
+ <input type="text" name="name" value="<?php echo $_REQUEST['name']; ?>" size="30" />
</td>
</tr>
<tr>
<td><?php print _("Start IP Address"); ?>:</td>
<td>
- <input type="text" name="start" value="<?= $_REQUEST['start']; ?>" size="20" maxlength="15" />
+ <input type="text" name="start" value="<?php echo $_REQUEST['start']; ?>" size="20" maxlength="15" />
</td>
</tr>
<tr>
<td><?php print _("End IP Address"); ?>:</td>
<td>
- <input type="text" name="end" value="<?= $_REQUEST['end']; ?>" size="20" maxlength="15" />
+ <input type="text" name="end" value="<?php echo $_REQUEST['end']; ?>" size="20" maxlength="15" />
</td>
</tr>
<tr>