[pLog-svn] r3585 - plog/trunk/class/dao

mark at devel.lifetype.net mark at devel.lifetype.net
Fri Jun 16 02:20:38 GMT 2006


Author: mark
Date: 2006-06-16 02:18:07 +0000 (Fri, 16 Jun 2006)
New Revision: 3585

Modified:
   plog/trunk/class/dao/articles.class.php
Log:
Remove unnecessary arguments.

Modified: plog/trunk/class/dao/articles.class.php
===================================================================
--- plog/trunk/class/dao/articles.class.php	2006-06-15 22:16:16 UTC (rev 3584)
+++ plog/trunk/class/dao/articles.class.php	2006-06-16 02:18:07 UTC (rev 3585)
@@ -113,7 +113,7 @@
         /**
          * @private
          */
-        function _getBlogArticleFromQuery($query, $includeHiddenFields)
+        function _getBlogArticleFromQuery($query)
         {
             // we send the query and then fetch the first array with the result
             $result = $this->Execute( $query );
@@ -127,7 +127,7 @@
             }
 
             $row = $result->FetchRow( $result );
-            $article = $this->mapRow( $row, $includeHiddenFields );
+            $article = $this->mapRow( $row );
             $result->Close();
             
             return $article;        



More information about the pLog-svn mailing list