diff options
author | zotlabs <mike@macgirvin.com> | 2018-04-04 17:54:43 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-04-04 17:54:43 -0700 |
commit | 1a25b0bda7d598888a49ee722f0f5cbea2a2f8f9 (patch) | |
tree | e9b846da870edf49a5fc50ca308796feaac84adf /include/channel.php | |
parent | f7481396060a5a57cdd5fe7055eed5ad3225f8f1 (diff) | |
download | volse-hubzilla-1a25b0bda7d598888a49ee722f0f5cbea2a2f8f9.tar.gz volse-hubzilla-1a25b0bda7d598888a49ee722f0f5cbea2a2f8f9.tar.bz2 volse-hubzilla-1a25b0bda7d598888a49ee722f0f5cbea2a2f8f9.zip |
allow the profile recrods to be cloned separately
Diffstat (limited to 'include/channel.php')
-rw-r--r-- | include/channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channel.php b/include/channel.php index 460c818da..4a87ef602 100644 --- a/include/channel.php +++ b/include/channel.php @@ -780,7 +780,7 @@ function identity_basic_export($channel_id, $sections = null) { } } - if(in_array('channel',$sections)) { + if(in_array('channel',$sections) || in_array('profile',$sections)) { $r = q("select * from profile where uid = %d", intval($channel_id) ); |