diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-09-08 14:47:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-09-08 14:47:21 +0000 |
commit | b9561f3f7a17a45dbb64125964fa6337afe0debc (patch) | |
tree | 454d98885cf437a1d30199e72e4b86d98523c877 | |
parent | ad4feafc3fae2096ea4c7402d0ff0a1e126ad8f0 (diff) | |
download | ampache-b9561f3f7a17a45dbb64125964fa6337afe0debc.tar.gz ampache-b9561f3f7a17a45dbb64125964fa6337afe0debc.tar.bz2 ampache-b9561f3f7a17a45dbb64125964fa6337afe0debc.zip |
remoted the last of the short tags
-rw-r--r-- | admin/album.php | 6 | ||||
-rw-r--r-- | admin/artist.php | 6 | ||||
-rwxr-xr-x | docs/CHANGELOG | 1 | ||||
-rw-r--r-- | templates/javascript_refresh.inc | 2 | ||||
-rw-r--r-- | templates/show_add_access.inc | 8 | ||||
-rw-r--r-- | templates/show_install_config.inc | 4 |
6 files changed, 14 insertions, 13 deletions
diff --git a/admin/album.php b/admin/album.php index 7b8751f0..006f99f8 100644 --- a/admin/album.php +++ b/admin/album.php @@ -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 diff --git a/admin/artist.php b/admin/artist.php index ebec5db6..be473d8d 100644 --- a/admin/artist.php +++ b/admin/artist.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 diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 461fca0e..1d88fffd 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -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 diff --git a/templates/javascript_refresh.inc b/templates/javascript_refresh.inc index 957eddf7..c15c8f24 100644 --- a/templates/javascript_refresh.inc +++ b/templates/javascript_refresh.inc @@ -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 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> diff --git a/templates/show_install_config.inc b/templates/show_install_config.inc index b6f5b297..2cbff907 100644 --- a/templates/show_install_config.inc +++ b/templates/show_install_config.inc @@ -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">[ <? |