Fixed bug in source listing introduced by code move

This commit is contained in:
2010-08-30 22:51:34 +01:00
parent 9f2d694265
commit c769f40c2a

View File

@@ -31,7 +31,7 @@ class RippingCluster_Source_PluginFactory extends RippingCluster_PluginFactory {
$sources = array(); $sources = array();
foreach (self::getValidPlugins() as $plugin) { foreach (self::getValidPlugins() as $plugin) {
$this->sources = array_merge($this->sources, self::enumerate($plugin)); $sources = array_merge($sources, self::enumerate($plugin));
} }
return $sources; return $sources;