]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Return intval from getID()
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 8 Feb 2016 11:21:46 +0000 (12:21 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 8 Feb 2016 11:21:46 +0000 (12:21 +0100)
classes/Managed_DataObject.php

index c02685e55e30adbdbfe208c605770f94417e400e..28e7e1b658973421b9031f8c885d8c0076ef8b7f 100644 (file)
@@ -409,8 +409,7 @@ abstract class Managed_DataObject extends Memcached_DataObject
             throw new Exception('Empty ID for object! (not inserted yet?).');
         }
 
-        // FIXME: How about forcing to return an int? Or will that overflow eventually?
-        return $this->id;
+        return intval($this->id);
     }
 
     // 'update' won't write key columns, so we have to do it ourselves.