missing AND in the SQL

This commit is contained in:
Brenda Wallace 2009-07-22 13:45:38 +12:00
父節點 38d70f1386
當前提交 2aa47096b8

查看文件

@ -136,7 +136,7 @@ class File extends Memcached_DataObject
return sprintf(_('A file this large would exceed your user quota of %d bytes.'), common_config('attachments', 'user_quota'));
}
$query .= ' month(modified) = month(now()) and year(modified) = year(now())';
$query .= ' AND month(modified) = month(now()) and year(modified) = year(now())';
$this->query($query);
$this->fetch();
$total = $this->total + $fileSize;