]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
used single quotes in SQL
authorBrenda Wallace <shiny@cpan.org>
Fri, 26 Jun 2009 22:29:02 +0000 (10:29 +1200)
committerBrenda Wallace <shiny@cpan.org>
Wed, 15 Jul 2009 08:18:30 +0000 (20:18 +1200)
classes/Notice.php

index 08125cf7b0d7c77f9546c39bf80c2a248a58c031..4e244c6661719b4a062b32556cc25bdf5768516f 100644 (file)
@@ -873,7 +873,7 @@ class Notice extends Memcached_DataObject
                 if ($cnt > 0) {
                     $qry .= ', ';
                 }
-                $qry .= '('.$id.', '.$this->id.', '.$source.', "'.$this->created.'") ';
+                $qry .= '('.$id.', '.$this->id.', '.$source.", '".$this->created. "') ";
                 $cnt++;
                 if ($cnt >= MAX_BOXCARS) {
                     $inbox = new Notice_inbox();