]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added non-critical FIXMEs
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 8 Feb 2015 14:33:00 +0000 (15:33 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 8 Feb 2015 14:33:14 +0000 (15:33 +0100)
classes/Managed_DataObject.php

index 3a6ed203128e09e27c810739892bf27a93363021..a628b8bee3aa1834879ecae689e4c9ca40ce2940 100644 (file)
@@ -356,6 +356,7 @@ abstract class Managed_DataObject extends Memcached_DataObject
 
             // commit our db transaction since we won't reach the COMMIT below
             $this->query('COMMIT');
+            // @FIXME return true only if something changed (otherwise 0)
             return true;
         }
 
@@ -387,6 +388,7 @@ abstract class Managed_DataObject extends Memcached_DataObject
 
         // commit our db transaction
         $this->query('COMMIT');
+        // @FIXME return true only if something changed (otherwise 0)
         return $result;
     }
 }