diff --git a/module/VuFind/src/VuFind/View/Helper/Root/AbstractSyndetics.php b/module/VuFind/src/VuFind/View/Helper/Root/AbstractSyndetics.php
index 47cdff5caac5fa9ca039380df0e4d5702e9ebcd7..6f7be7f91bf8f01ee5b2ca187ae30f4abd762775 100644
--- a/module/VuFind/src/VuFind/View/Helper/Root/AbstractSyndetics.php
+++ b/module/VuFind/src/VuFind/View/Helper/Root/AbstractSyndetics.php
@@ -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;