From 676c702d5732779d6eab71e6021b665b34d0f3ea Mon Sep 17 00:00:00 2001 From: Michael Meckelein Date: Wed, 12 Mar 2008 09:39:58 +0100 Subject: [PATCH] modified: classes/logstream.class.php arrPropertiesOut param is the right one for read operations --- classes/logstream.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/classes/logstream.class.php b/classes/logstream.class.php index 842b91c..5aef6f6 100644 --- a/classes/logstream.class.php +++ b/classes/logstream.class.php @@ -60,20 +60,20 @@ abstract class LogStream { * changed the original data source. * * @param uID integer out: unique id of the data row - * @param logLine string out: data row + * @param arrProperitesOut array out: list with properties * @return integer Error state */ - public abstract function ReadNext(&$uID, &$logLine); + public abstract function ReadNext(&$uID, &$arrProperitesOut); /** * Read the data from a specific uID. * * @param uID integer in: unique id of the data row - * @param logLine string out: data row + * @param arrProperitesOut array out: list with properties * @return integer Error state * @see ReadNext() */ - public abstract function Read($uID, &$logLine); + public abstract function Read($uID, &$arrProperitesOut); /** * Set the filter for the current stream.