summaryrefslogtreecommitdiffstats
path: root/modules/localplay/mpd.controller.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-09 20:58:04 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-09 20:58:04 +0000
commit17a4516e29e9ce9d2583d8b06431dfcdf5722c11 (patch)
tree4dcf79a137336f12d38476c12b26128d4098eda5 /modules/localplay/mpd.controller.php
parent883adcd52b1f4cb4afe4ff5062d1bb83218840ff (diff)
downloadampache-17a4516e29e9ce9d2583d8b06431dfcdf5722c11.tar.gz
ampache-17a4516e29e9ce9d2583d8b06431dfcdf5722c11.tar.bz2
ampache-17a4516e29e9ce9d2583d8b06431dfcdf5722c11.zip
added the controls to the mpd playlist does not refresh correctly, but does work
Diffstat (limited to 'modules/localplay/mpd.controller.php')
-rw-r--r--modules/localplay/mpd.controller.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/localplay/mpd.controller.php b/modules/localplay/mpd.controller.php
index 41374f9d..9a668219 100644
--- a/modules/localplay/mpd.controller.php
+++ b/modules/localplay/mpd.controller.php
@@ -402,15 +402,15 @@ class AmpacheMpd extends localplay_controller {
} // volume
/**
- * loop
+ * repeat
* This tells MPD to set the repeating the playlist (i.e. loop) to either on or off
*/
- function loop($state) {
+ function repeat($state) {
if (is_null($this->_mpd->SetRepeat($state))) { return false; }
return true;
- } // loop
+ } // repeat
/**