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

oscar at devel.lifetype.net oscar at devel.lifetype.net
Wed Jul 25 17:45:35 EDT 2007


Author: oscar
Date: 2007-07-25 17:45:35 -0400 (Wed, 25 Jul 2007)
New Revision: 5728

Modified:
   plog/trunk/class/dao/articles.class.php
Log:
Replaced $this->_db->Execute with $this->Execute, as it should be

Modified: plog/trunk/class/dao/articles.class.php
===================================================================
--- plog/trunk/class/dao/articles.class.php	2007-07-25 21:28:21 UTC (rev 5727)
+++ plog/trunk/class/dao/articles.class.php	2007-07-25 21:45:35 UTC (rev 5728)
@@ -213,7 +213,7 @@
             $where = $this->buildWhere( $blogId, $date, -1, $categoryId, $status, $userId, $maxDate, $searchTerms, $locationId );
             $query = "SELECT COUNT(a.id) AS total FROM {$prefix}articles a, {$prefix}articles_categories c, {$prefix}article_categories_link l WHERE $where ";
 
-            $result = $this->_db->Execute( $query );
+            $result = $this->Execute( $query );
 
             if( !$result )
             	return 0;



More information about the pLog-svn mailing list