aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-11-18 23:51:00 +0100
committerMario Vavti <mario@mariovavti.com>2015-11-18 23:51:00 +0100
commit0c163c4d038a4c26335af1bde366d8ef9e53c464 (patch)
tree942f1217e80087737172c2d0b40d7cf2711a4532 /mod
parente4145deeb7a72ac321113fde672e1b499ecb0d2d (diff)
parent179730e4851bfb26151502d4473231df86b9c8df (diff)
downloadvolse-hubzilla-0c163c4d038a4c26335af1bde366d8ef9e53c464.tar.gz
volse-hubzilla-0c163c4d038a4c26335af1bde366d8ef9e53c464.tar.bz2
volse-hubzilla-0c163c4d038a4c26335af1bde366d8ef9e53c464.zip
Merge branch 'master' of https://github.com/redmatrix/hubzilla
Diffstat (limited to 'mod')
-rw-r--r--mod/import.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/import.php b/mod/import.php
index a33cf339b..02e71233a 100644
--- a/mod/import.php
+++ b/mod/import.php
@@ -123,12 +123,12 @@ function import_account(&$a, $account_id) {
if(array_key_exists('channel',$data)) {
if($completed < 1) {
- $channel = import_channel($data['channel']);
+ $channel = import_channel($data['channel'], $account_id);
}
else {
$r = q("select * from channel where channel_account_id = %d and channel_guid = '%s' limit 1",
- intval(get_account_id()),
+ intval($account_id),
dbesc($channel['channel_guid'])
);
if($r)
@@ -166,7 +166,7 @@ function import_account(&$a, $account_id) {
if($data['photo']) {
require_once('include/photo/photo_driver.php');
- import_channel_photo(base64url_decode($data['photo']['data']),$data['photo']['type'],get_account_id(),$channel['channel_id']);
+ import_channel_photo(base64url_decode($data['photo']['data']),$data['photo']['type'],$account_id,$channel['channel_id']);
}
if(is_array($data['profile']))
@@ -335,7 +335,7 @@ function import_account(&$a, $account_id) {
unset($abook['abook_id']);
unset($abook['abook_rating']);
unset($abook['abook_rating_text']);
- $abook['abook_account'] = get_account_id();
+ $abook['abook_account'] = $account_id;
$abook['abook_channel'] = $channel['channel_id'];
if(! array_key_exists('abook_blocked',$abook)) {
$abook['abook_blocked'] = (($abook['abook_flags'] & 0x0001 ) ? 1 : 0);