diff options
author | friendica <info@friendica.com> | 2014-08-13 16:34:36 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-13 16:34:36 -0700 |
commit | eb38f3f47460bfb00af3dcae815720b2970a31eb (patch) | |
tree | 13c7efd787b705e73e94676347ab2f9fc10f1afc /util | |
parent | 041aff36b7feb4983a2cc5faed79e54863e06913 (diff) | |
download | volse-hubzilla-eb38f3f47460bfb00af3dcae815720b2970a31eb.tar.gz volse-hubzilla-eb38f3f47460bfb00af3dcae815720b2970a31eb.tar.bz2 volse-hubzilla-eb38f3f47460bfb00af3dcae815720b2970a31eb.zip |
support title and description (and dates which were done earlier) for friendica photo import
Diffstat (limited to 'util')
-rw-r--r-- | util/frphotohelper.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/frphotohelper.php b/util/frphotohelper.php index e8477b096..484e7fcaf 100644 --- a/util/frphotohelper.php +++ b/util/frphotohelper.php @@ -49,6 +49,8 @@ $cookies = 'store/[data]/frphoto_cookie_' . $channel_address; $args['not_visible'] = 1; $args['created'] = $j['created']; $args['edited'] = $j['edited']; + $args['title'] = $j['title']; + $args['description'] = $j['desc']; if($j['allow_cid'] || $j['allow_gid'] || $j['deny_cid'] || $j['deny_gid']) $args['contact_allow'] = $channel['channel_hash']; |