summaryrefslogtreecommitdiffstats
path: root/templates/show_mpdplay.inc
diff options
context:
space:
mode:
authorxgizzmo <xgizzmo@ampache>2005-07-13 21:37:12 +0000
committerxgizzmo <xgizzmo@ampache>2005-07-13 21:37:12 +0000
commit1be55b8fc15f9dc9e105de2bc2ef1011b49b1c8e (patch)
treeb3f456275177ac7c1336a6d3729e3eb71fb7c909 /templates/show_mpdplay.inc
parent401b7e13c63d45bdd469db1f275d5c7473564bab (diff)
downloadampache-1be55b8fc15f9dc9e105de2bc2ef1011b49b1c8e.tar.gz
ampache-1be55b8fc15f9dc9e105de2bc2ef1011b49b1c8e.tar.bz2
ampache-1be55b8fc15f9dc9e105de2bc2ef1011b49b1c8e.zip
Fixed typo in show_mpdplay.inc
Diffstat (limited to 'templates/show_mpdplay.inc')
-rw-r--r--templates/show_mpdplay.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_mpdplay.inc b/templates/show_mpdplay.inc
index 188d0756..7ab298f1 100644
--- a/templates/show_mpdplay.inc
+++ b/templates/show_mpdplay.inc
@@ -108,7 +108,7 @@ global $condPL;
</tr>
<tr>
<td align="center"><?php
- if (!$$myMpd->playlist[($myMpd->current_track_id)]['Title']) {
+ if (!$myMpd->playlist[($myMpd->current_track_id)]['Title']) {
list($tmp, $id, $tmp) = preg_split("/(song=|&)/", $myMpd->playlist[($myMpd->current_track_id)]['file']);
$r = new Song($id);
$myMpd->playlist[($myMpd->current_track_id)]['Title'] = $r->title;
@@ -134,7 +134,7 @@ global $condPL;
</tr>
<tr>
<td align="center"><?php
- if (!$$myMpd->playlist[($myMpd->current_track_id+1)]['Title']) {
+ if (!$myMpd->playlist[($myMpd->current_track_id+1)]['Title']) {
list($tmp, $id, $tmp) = preg_split("/(song=|&)/", $myMpd->playlist[($myMpd->current_track_id+1)]['file']);
$r = new Song($id);
$myMpd->playlist[($myMpd->current_track_id+1)]['Title'] = $r->title;