From f2e3197e979b68c2338a5b6ec808383648277921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Sun, 5 Apr 2009 20:28:40 +0200 Subject: [PATCH] objectManager: Add missing variable initialization --- include/objectManager.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/objectManager.php b/include/objectManager.php index 91442a6..326f6fd 100644 --- a/include/objectManager.php +++ b/include/objectManager.php @@ -1353,6 +1353,7 @@ class ObjectManager per page values and the second contains the default value. If the function does not exist we assume no multi-page behaviour */ $oObject = new $this->sClass(); + $sControls = ''; if(!method_exists($oObject, "objectGetItemsPerPage") || $oObject->objectGetItemsPerPage($this->sState) === FALSE)