diff options
Diffstat (limited to 'templates/show_add_access.inc')
-rw-r--r-- | templates/show_add_access.inc | 8 |
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> |