From 18e06a1fa727ec89ccffc32db626aacbe10ef89c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 28 Apr 2011 14:35:21 +0000 Subject: [PATCH] Opps... --- inc/classes/main/stacker/fifo/class_FiFoStacker.php | 2 +- inc/classes/main/stacker/filo/class_FiLoStacker.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/classes/main/stacker/fifo/class_FiFoStacker.php b/inc/classes/main/stacker/fifo/class_FiFoStacker.php index 7b33cd9d..d1ed904e 100644 --- a/inc/classes/main/stacker/fifo/class_FiFoStacker.php +++ b/inc/classes/main/stacker/fifo/class_FiFoStacker.php @@ -71,7 +71,7 @@ class FiFoStacker extends BaseStacker implements Stackable { */ public function popNamed ($stackerName) { // Get the value - $value = $this->getNamed($stackerName(); + $value = $this->getNamed($stackerName); // Call the protected method parent::popFirst($stackerName); diff --git a/inc/classes/main/stacker/filo/class_FiLoStacker.php b/inc/classes/main/stacker/filo/class_FiLoStacker.php index 81604945..35a79f8e 100644 --- a/inc/classes/main/stacker/filo/class_FiLoStacker.php +++ b/inc/classes/main/stacker/filo/class_FiLoStacker.php @@ -71,7 +71,7 @@ class FiLoStacker extends BaseStacker implements Stackable { */ public function popNamed ($stackerName) { // Get the value - $value = $this->getNamed($stackerName(); + $value = $this->getNamed($stackerName); // Call the protected method parent::popLast($stackerName); -- 2.30.2