Merge pull-request #2897

This commit is contained in:
Frederic Guillot 2016-12-20 20:06:52 -05:00
commit c1d07fe0ef
1 changed files with 3 additions and 1 deletions

View File

@ -48,6 +48,8 @@ class ExternalTaskManager
public function getProvidersList()
{
$providers = array_keys($this->providers);
return array_combine($providers, $providers);
if (count($providers)) {
return array_combine($providers, $providers);
}
}
}