[pLog-svn] r1775 - plog/branches/plog-1.0.1/class/dao

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Thu Apr 7 13:14:10 GMT 2005


Author: jondaley
Date: 2005-04-07 13:14:08 +0000 (Thu, 07 Apr 2005)
New Revision: 1775

Modified:
   plog/branches/plog-1.0.1/class/dao/articlecomments.class.php
Log:
removed invalid column properties

Modified: plog/branches/plog-1.0.1/class/dao/articlecomments.class.php
===================================================================
--- plog/branches/plog-1.0.1/class/dao/articlecomments.class.php	2005-04-06 21:56:52 UTC (rev 1774)
+++ plog/branches/plog-1.0.1/class/dao/articlecomments.class.php	2005-04-07 13:14:08 UTC (rev 1775)
@@ -77,7 +77,7 @@
 		{
 			$query = "SELECT id,article_id,topic,
 			                 text,date,user_email,user_url,user_name,parent_id,
-			                 client_ip,send_notification,status,spam_rate,properties
+			                 client_ip,send_notification,status,spam_rate
 			          FROM ".$this->getPrefix()."articles_comments
 			          WHERE article_id = ".$artid;
             if( $status != COMMENT_STATUS_ALL )
@@ -142,7 +142,7 @@
 
 			$query = "SELECT id,article_id,topic,
 			                 text,date,user_email,user_url,user_name,parent_id,
-			                 client_ip,send_notification,status,spam_rate,properties
+			                 client_ip,send_notification,status,spam_rate
 			          FROM ".$this->getPrefix()."articles_comments WHERE article_id IN (".$ids.")";
             if( $status != COMMENT_STATUS_ALL )
             	$query .= " AND status = $status";
@@ -227,7 +227,7 @@
 		{
 			$query = "SELECT id,article_id,topic,
 			                 text,date,user_email,user_url,user_name,parent_id,
-			                 client_ip,send_notification,status,spam_rate,properties
+			                 client_ip,send_notification,status,spam_rate
 			         FROM ".$this->getPrefix()."articles_comments 
 			         WHERE id = ".$commentid." AND article_id = '".Db::qstr($artid)."';";
 
@@ -440,7 +440,7 @@
 		{
 			$query = "SELECT id,article_id,topic,
 			                 text,date,user_email,user_url,user_name,parent_id,
-			                 client_ip,send_notification,status,spam_rate,properties 
+			                 client_ip,send_notification,status,spam_rate
 			          FROM ".$this->getPrefix()."articles_comments
 					  WHERE id = $id";
 			$result = $this->Execute( $query );




More information about the pLog-svn mailing list