update_collection_user()

Description

Update collection to belong to a new user

Parameters

ColumnTypeDefaultDescription
$collection integer Collection ID
$newuser integer User ID to assign collection to

Return

boolean success|failure

Location

include/collections_functions.php lines 3730 to 3739

Definition

 
function update_collection_user($collection$newuser)
{
    if (!
collection_writeable($collection)) {
        
debug("FAILED TO CHANGE COLLECTION USER " $collection);
        return 
false;
    }

    
ps_query("UPDATE collection SET user=? WHERE ref=?", array("i",$newuser,"i",$collection));
    return 
true;
}

This article was last updated 5th June 2025 21:05 Europe/London time based on the source file dated 3rd June 2025 16:40 Europe/London time.