missing AND in the SQL

This commit is contained in:
Brenda Wallace 2009-07-22 13:45:38 +12:00
parent 38d70f1386
commit 2aa47096b8
1 changed files with 1 additions and 1 deletions

View File

@ -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;