From: Brenda Wallace Date: Wed, 22 Jul 2009 01:45:38 +0000 (+1200) Subject: missing AND in the SQL X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2aa47096b82fd224008d901584f09931c0432c2b;p=quix0rs-gnu-social.git missing AND in the SQL --- diff --git a/classes/File.php b/classes/File.php index 68d385d1ea..7ee8f6e084 100644 --- a/classes/File.php +++ b/classes/File.php @@ -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;