summaryrefslogtreecommitdiffstats
path: root/modules/localplay/mpd.controller.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-08 04:20:13 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-08 04:20:13 +0000
commite98446d5701b9467bc64003b0f08c7c915db1e61 (patch)
treef3816cf1f61672b18e27d131f7c656767421b9f3 /modules/localplay/mpd.controller.php
parent94991b185cc8e0048194e77749593c0388636444 (diff)
downloadampache-e98446d5701b9467bc64003b0f08c7c915db1e61.tar.gz
ampache-e98446d5701b9467bc64003b0f08c7c915db1e61.tar.bz2
ampache-e98446d5701b9467bc64003b0f08c7c915db1e61.zip
fixed missing password pass issue with the mpd controller
Diffstat (limited to 'modules/localplay/mpd.controller.php')
-rw-r--r--modules/localplay/mpd.controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/localplay/mpd.controller.php b/modules/localplay/mpd.controller.php
index cd07e92e..3c99e63f 100644
--- a/modules/localplay/mpd.controller.php
+++ b/modules/localplay/mpd.controller.php
@@ -373,7 +373,7 @@ class AmpacheMpd {
*/
function connect() {
- $this->_mpd = new mpd(conf('localplay_mpd_hostname'),conf('localplay_mpd_port'));
+ $this->_mpd = new mpd(conf('localplay_mpd_hostname'),conf('localplay_mpd_port'),conf('localplay_mpd_password'));
if ($this->_mpd->connected) { return true; }