]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove debugging code from Notice.php
authorEvan Prodromou <evan@controlyourself.ca>
Sat, 27 Jun 2009 14:02:36 +0000 (07:02 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Sat, 27 Jun 2009 14:02:36 +0000 (07:02 -0700)
classes/Notice.php

index d0ee1d9250a726d55e01dceaa22a89c0a1deed9d..502cc57b81812cc5ed29d89b255c22012d90118a 100644 (file)
@@ -874,7 +874,6 @@ class Notice extends Memcached_DataObject
                 $qry .= '('.$id.', '.$this->id.', '.$source.', "'.$this->created.'") ';
                 $cnt++;
                 if ($cnt >= MAX_BOXCARS) {
-                    common_debug($qry);
                     $inbox = new Notice_inbox();
                     $inbox->query($qry);
                     $qry = $qryhdr;
@@ -883,7 +882,6 @@ class Notice extends Memcached_DataObject
             }
 
             if ($cnt > 0) {
-                common_debug($qry);
                 $inbox = new Notice_inbox();
                 $inbox->query($qry);
             }