missing AND in the SQL
This commit is contained in:
parent
38d70f1386
commit
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;
|
||||
|
Loading…
Reference in New Issue
Block a user