diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-08 01:22:24 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-08 01:22:24 +0000 |
commit | 2b12112868cce750e83a015cb581d376f08a873b (patch) | |
tree | af2fb5cc9d41fee539937aa0dd7f470d0f456359 /templates | |
parent | a17b1ac49b469c4adf5214599d2f6b4f819d5a7a (diff) | |
download | ampache-2b12112868cce750e83a015cb581d376f08a873b.tar.gz ampache-2b12112868cce750e83a015cb581d376f08a873b.tar.bz2 ampache-2b12112868cce750e83a015cb581d376f08a873b.zip |
fixed the last short tags I can find, and improved log file error message
Diffstat (limited to 'templates')
-rw-r--r-- | templates/customize_catalog.inc | 2 | ||||
-rw-r--r-- | templates/show_box.inc | 2 | ||||
-rw-r--r-- | templates/show_mpdplay.inc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/customize_catalog.inc b/templates/customize_catalog.inc index 243e66ae..05f6dea7 100644 --- a/templates/customize_catalog.inc +++ b/templates/customize_catalog.inc @@ -27,7 +27,7 @@ <table class="tabledata" cellspacing="0" cellpadding="0" border="0"> <tr> <td><?php echo _("Name"); ?>:</td> - <td><input size="60" type="text" name="name" value="<?= htmlspecialchars($catalog->name);?>"></input></td> + <td><input size="60" type="text" name="name" value="<?php echo scrub_out($catalog->name); ?>"></input></td> <td style="vertical-align:top; font-family: monospace;" rowspan="5"> <strong><?php echo _("Auto-inserted Fields"); ?>:</strong><br /> %A = <?php echo _("album name"); ?><br /> diff --git a/templates/show_box.inc b/templates/show_box.inc index ea071e93..1d856458 100644 --- a/templates/show_box.inc +++ b/templates/show_box.inc @@ -29,7 +29,7 @@ <table class="border" cellspacing="1" cellpadding="3"> <tr align="center"> - <td background="<?= conf('web_path'); ?>/images/ampache-light-bg.gif" bgcolor="#c0c0c0"><?= $title ?></td> + <td background="<?php echo conf('web_path'); ?>/images/ampache-light-bg.gif" bgcolor="#c0c0c0"><?php echo $title; ?></td> </tr> <tr> <td class="even"> diff --git a/templates/show_mpdplay.inc b/templates/show_mpdplay.inc index 70cb44f9..84d95bd2 100644 --- a/templates/show_mpdplay.inc +++ b/templates/show_mpdplay.inc @@ -54,7 +54,7 @@ global $condPL; </td> </tr> <tr><td class="content"> - Volume: <b><? echo $myMpd->volume ?>%</b> + Volume: <b><?php echo $myMpd->volume ?>%</b> </td></tr> <tr><td class="content" align="center"> |