diff options
author | ken restivo <ken@restivo.org> | 2015-11-18 00:26:18 -0800 |
---|---|---|
committer | ken restivo <ken@restivo.org> | 2015-11-18 00:26:18 -0800 |
commit | 312cc415cec39f3b7a45f268acda5f0dd2500e3e (patch) | |
tree | 6c87bfc052b09ce2ff5dc2c55220866abeb2649e /mod/import.php | |
parent | 1f2a408be0310c7f70df2c916424dec1a2e25d6c (diff) | |
download | volse-hubzilla-312cc415cec39f3b7a45f268acda5f0dd2500e3e.tar.gz volse-hubzilla-312cc415cec39f3b7a45f268acda5f0dd2500e3e.tar.bz2 volse-hubzilla-312cc415cec39f3b7a45f268acda5f0dd2500e3e.zip |
Pass in account_id. Required for bulk identity importer.
Diffstat (limited to 'mod/import.php')
-rw-r--r-- | mod/import.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/import.php b/mod/import.php index 1b8bc3098..02e71233a 100644 --- a/mod/import.php +++ b/mod/import.php @@ -123,7 +123,7 @@ 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 { |