From: Roland Häder Date: Thu, 28 Apr 2011 14:35:21 +0000 (+0000) Subject: Opps... X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=18e06a1fa727ec89ccffc32db626aacbe10ef89c Opps... --- 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);