diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-05-18 18:23:20 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-05-18 18:23:20 +0000 |
commit | 4a1d7a40ea786526f2f78141451b13ec5e5f90fb (patch) | |
tree | 70367e9e51b809722b30d442481543ae746e1aff /lib/class/plugin.class.php | |
parent | 9dd2cb89c20c2cef664ce5641f4427a371284de2 (diff) | |
download | ampache-4a1d7a40ea786526f2f78141451b13ec5e5f90fb.tar.gz ampache-4a1d7a40ea786526f2f78141451b13ec5e5f90fb.tar.bz2 ampache-4a1d7a40ea786526f2f78141451b13ec5e5f90fb.zip |
fix the message parsing so that it accepts libre.fms slightly different response
Diffstat (limited to 'lib/class/plugin.class.php')
-rw-r--r-- | lib/class/plugin.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/plugin.class.php b/lib/class/plugin.class.php index 1ae18250..ac053612 100644 --- a/lib/class/plugin.class.php +++ b/lib/class/plugin.class.php @@ -49,7 +49,7 @@ class Plugin { * This actually loads the config file for the plugin the name of the * class contained within the config file must be Plugin[NAME OF FILE] */ - function _get_info($name) { + public function _get_info($name) { /* Require the file we want */ require_once Config::get('prefix') . '/modules/plugins/' . $name . '.plugin.php'; |