diff options
author | Brenda Wallace <shiny@cpan.org> | 2009-06-27 10:29:02 +1200 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2009-07-15 20:18:30 +1200 |
commit | 403bb38bcd191d7b4e9c62e7f5f4bbb3968729df (patch) | |
tree | 57bb804e2acc851ae9c7255ee87f104e6d02e60f /classes/Notice.php | |
parent | 15042ed50b72804eaeefd0c60aa63674bdefe8b4 (diff) |
used single quotes in SQL
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 08125cf7b..4e244c666 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -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(); |