diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-04-06 07:37:37 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-04-06 07:37:37 +0000 |
commit | 3b01fd4cdbdeefb5ce591a6b5dc099d912b6ced2 (patch) | |
tree | 2cba281749dc54cb33106530ee6b7ef1e373df24 /modules | |
parent | 6f95e4f9535c4f4db9a058ec4d4a4dee9d8e3025 (diff) | |
download | ampache-3b01fd4cdbdeefb5ce591a6b5dc099d912b6ced2.tar.gz ampache-3b01fd4cdbdeefb5ce591a6b5dc099d912b6ced2.tar.bz2 ampache-3b01fd4cdbdeefb5ce591a6b5dc099d912b6ced2.zip |
fixed mising web_path reference and a few more updates to the locaplay/mpd stuff
Diffstat (limited to 'modules')
-rw-r--r-- | modules/init.php | 2 | ||||
-rw-r--r-- | modules/localplay/mpd.controller.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/init.php b/modules/init.php index bf4f9445..5e8257b4 100644 --- a/modules/init.php +++ b/modules/init.php @@ -80,7 +80,7 @@ if (!$results['allow_stream_playback']) { /** This is the version.... fluf nothing more... **/ -$results['version'] = '3.3.2-Beta3 (Build 001)'; +$results['version'] = '3.3.2-Beta3 (Build 002)'; diff --git a/modules/localplay/mpd.controller.php b/modules/localplay/mpd.controller.php index f6ec4fac..160e3e6e 100644 --- a/modules/localplay/mpd.controller.php +++ b/modules/localplay/mpd.controller.php @@ -211,7 +211,7 @@ class AmpacheMpd { */ function connect() { - $this->_mpd = new mpd(conf('localplay_mpd_hostnmae'),conf('localplay_mpd_port')); + $this->_mpd = new mpd(conf('localplay_mpd_hostname'),conf('localplay_mpd_port')); if ($this->_mpd->connected) { return true; } |