[pLog-svn] r3985 - plog/branches/lifetype-1.1.1

mark at devel.lifetype.net mark at devel.lifetype.net
Mon Sep 18 08:55:26 GMT 2006


Author: mark
Date: 2006-09-18 08:55:25 +0000 (Mon, 18 Sep 2006)
New Revision: 3985

Modified:
   plog/branches/lifetype-1.1.1/wizard.php
Log:
Fixed mysql5 incompatibility issues in upgrade wizard.

Modified: plog/branches/lifetype-1.1.1/wizard.php
===================================================================
--- plog/branches/lifetype-1.1.1/wizard.php	2006-09-17 22:35:22 UTC (rev 3984)
+++ plog/branches/lifetype-1.1.1/wizard.php	2006-09-18 08:55:25 UTC (rev 3985)
@@ -1785,11 +1785,11 @@
                 // build the insert query
                 $insert = "INSERT INTO ".$this->dbPrefix."articles_comments
                            (article_id, blog_id, topic, text, date, user_email, user_url, user_name, parent_id, 
-                           client_ip, send_notification, status, spam_rate, normalized_text, normalized_topic,
-                           type) 
+                           client_ip, send_notification, status, spam_rate, properties, normalized_text, normalized_topic, type) 
                            VALUES (".$row["article_id"].",".$row["blog_id"].",'".Db::qstr($row["title"])."','".
                                      Db::qstr($row["excerpt"])."','".$row["date"]."','','".$row["url"]."','".
                                      Db::qstr($row["blog_name"])."', '0', '0.0.0.0','0', '0', '0','".
+                                     serialize(array())."','".
                                      Textfilter::urlize( $row["excerpt"] )."','".
                                      Textfilter::urlize( $row["title"] )."','2')";                            
                 



More information about the pLog-svn mailing list