The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 1740b0c0 authored by Demian Katz's avatar Demian Katz
Browse files

Avoid notice.

parent a68bd51c
No related merge requests found
......@@ -137,7 +137,7 @@ abstract class AbstractSyndetics extends AbstractHelper
$parts = explode(':', trim($provider));
$provider = strtolower($parts[0]);
$func = 'load' . ucwords($provider);
$key = $parts[1];
$key = isset($parts[1]) ? $parts[1] : '';
try {
$results[$provider] = method_exists($this, $func)
? $this->$func($key) : false;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment