]> git.mxchange.org Git - friendica.git/commitdiff
We don't need type casting for dba::select() arguments
authorPierre Rudloff <contact@rudloff.pro>
Sat, 7 Apr 2018 20:18:39 +0000 (22:18 +0200)
committerPierre Rudloff <contact@rudloff.pro>
Sat, 7 Apr 2018 20:18:39 +0000 (22:18 +0200)
include/api.php

index 8c79cc481457da96c87132f47bc2a3d90819a9d8..ccb8608738e947486d454f76e160dfd36730c3b9 100644 (file)
@@ -3307,7 +3307,7 @@ function api_lists_ownerships($type)
        $user_info = api_get_user($a);
        $uid = $user_info['uid'];
 
-       $groups = dba::select('group', [], ['deleted' => 0, 'uid' => intval($uid)]);
+       $groups = dba::select('group', [], ['deleted' => 0, 'uid' => $uid]);
 
        // loop through all groups
        $lists = [];
@@ -5581,7 +5581,7 @@ function api_lists_destroy($type)
        }
 
        // get data of the specified group id
-       $group = dba::selectFirst('group', [], ['uid' => intval($uid), 'id' => intval($gid)]);
+       $group = dba::selectFirst('group', [], ['uid' => $uid, 'id' => $gid]);
        // error message if specified gid is not in database
        if (!$group) {
                throw new BadRequestException('gid not available');
@@ -5835,7 +5835,7 @@ function api_lists_update($type)
        }
 
        // get data of the specified group id
-       $group = dba::selectFirst('group', [], ['uid' => intval($uid), 'id' => intval($gid)]);
+       $group = dba::selectFirst('group', [], ['uid' => $uid, 'id' => $gid]);
        // error message if specified gid is not in database
        if (!$group) {
                throw new BadRequestException('gid not available');