Merge branch '3.4RC'
This commit is contained in:
@@ -21,6 +21,11 @@ function import_channel($channel, $account_id, $seize) {
|
||||
$channel['channel_removed'] = (($channel['channel_pageflags'] & 0x8000) ? 1 : 0);
|
||||
}
|
||||
|
||||
if(intval($channel['channel_removed'])) {
|
||||
notice( t('Unable to import a removed channel.') . EOL);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Ignore the hash provided and re-calculate
|
||||
|
||||
$channel['channel_hash'] = make_xchan_hash($channel['channel_guid'],$channel['channel_guid_sig']);
|
||||
@@ -94,7 +99,7 @@ function import_channel($channel, $account_id, $seize) {
|
||||
}
|
||||
|
||||
if($clean) {
|
||||
create_table_from_array('channel',$clean);
|
||||
channel_store_lowlevel($clean);
|
||||
}
|
||||
|
||||
$r = q("select * from channel where channel_account_id = %d and channel_guid = '%s' limit 1",
|
||||
@@ -176,7 +181,7 @@ function import_profiles($channel, $profiles) {
|
||||
$profile['thumb'] = z_root() . '/photo/' . basename($profile['thumb']);
|
||||
}
|
||||
|
||||
create_table_from_array('profile', $profile);
|
||||
profile_store_lowlevel($profile);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user