Please visit our new Forums at Kaltura.org, our brand new community website. These Forums have been closed and will remain online as an archive only.

PHP API - Bugs

PHP API - Bugs

Postby Chris Hocking on Mon Jan 26, 2009 11:53 am

Bug:

Code: Select all
    public function updateKshowOwner(KalturaSessionUser $kalturaSessionUser, $kshowId, $detailed = null)
    {
        $params = array();
        $params["kshow_id"] = $kshowId;
        $this->addOptionalParam($params, "detailed", $detailed);

        $result = $this->hit("updatekshowowner", $kalturaSessionUser, $params);
        return $result;
    }


Fix:

Code: Select all
    public function updateKshowOwner(KalturaSessionUser $kalturaSessionUser, $userid, $kshowId, $detailed = null)
    {
        $params = array();
        $params["user_id"] = $userid;
        $params["kshow_id"] = $kshowId;
        $this->addOptionalParam($params, "detailed", $detailed);

        $result = $this->hit("updatekshowowner", $kalturaSessionUser, $params);
        return $result;
    }
Chris Hocking
 
Posts: 139
Joined: Sat Dec 27, 2008 8:02 am

Return to Kaltura API's (web services)

Who is online

Users browsing this forum: No registered users and 1 guest

cron