mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 10:49:37 +02:00
remoted the last of the short tags
This commit is contained in:
parent
ad4feafc3f
commit
b9561f3f7a
6 changed files with 14 additions and 13 deletions
|
@ -83,13 +83,13 @@ if ( $album and $action == 'View' ) {
|
|||
|
||||
?>
|
||||
|
||||
<p style="color: red;"><?= $update_text ?></p>
|
||||
<p style="color: red;"><?php echo $update_text; ?></p>
|
||||
|
||||
<form name="album_change" method=post action="album.php">
|
||||
<table>
|
||||
<tr>
|
||||
<td>Album Name:</td>
|
||||
<td><input type=text name="new_name" value="<?= $album_name ?>" size="50"></td>
|
||||
<td><input type=text name="new_name" value="<?php echo $album_name; ?>" size="50"></td>
|
||||
<td> </td>
|
||||
<td><input type=submit name=action value="Change Name"></td>
|
||||
<tr>
|
||||
|
@ -98,7 +98,7 @@ if ( $album and $action == 'View' ) {
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type=hidden name=album value="<?= $album ?>">
|
||||
<input type=hidden name=album value="<?php echo $album; ?>">
|
||||
</form>
|
||||
|
||||
<?php
|
||||
|
|
|
@ -93,12 +93,12 @@ if ( $artist and $action == 'View' ) {
|
|||
|
||||
?>
|
||||
|
||||
<p style="color: red;"><?= $update_text ?></p>
|
||||
<p style="color: red;"><?php echo $update_text; ?></p>
|
||||
|
||||
<form name="artist_change" method=post action="artist.php">
|
||||
<table>
|
||||
<tr>
|
||||
<td>Artist Name:</td> <td><input type=text name="new_name" value="<?= $artist_name ?>" size="50"></td>
|
||||
<td>Artist Name:</td> <td><input type=text name="new_name" value="<?php echo $artist_name; ?>" size="50"></td>
|
||||
<td> </td> <td><input type=submit name=action value="Change Name"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -107,7 +107,7 @@ if ( $artist and $action == 'View' ) {
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="hidden" name="artist" value="<?= $artist ?>">
|
||||
<input type="hidden" name="artist" value="<?php echo $artist; ?>">
|
||||
</form>
|
||||
|
||||
<?php
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
do anything
|
||||
- Fixed a slight logic error that could give a weird error when
|
||||
you attempted to create two users with the same username
|
||||
- Removed the last of the short php tags
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<script type="text/javascript" language="javascript">
|
||||
<!-- Begin
|
||||
// Set refresh interval (in seconds)
|
||||
var refreshinterval=<?= conf('refresh_limit'); ?>
|
||||
var refreshinterval=<?php echo conf('refresh_limit'); ?>
|
||||
|
||||
// Display the countdown inside the status bar?
|
||||
// Set "1" for yes or "0" for no
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<br />
|
||||
<table border="0" cellpadding="0">
|
||||
<tr>
|
||||
<td valign="top"><?= _("Ampache.cfg.php Exists"); ?></td>
|
||||
<td valign="top"><?php echo _("Ampache.cfg.php Exists"); ?></td>
|
||||
<td valign="top">[
|
||||
<?
|
||||
if (!read_config_file($configfile)) {
|
||||
|
@ -101,7 +101,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<?= _("Ampache.cfg.php Configured?"); ?>
|
||||
<?php echo _("Ampache.cfg.php Configured?"); ?>
|
||||
</td>
|
||||
<td valign="top">[
|
||||
<?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue