From ee2bea37e9a46e8dcd6b7df655fc56c1feb8132e Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 9 Jan 2014 21:01:53 -0800 Subject: mod_filestorage: provide a URL for linking to webpages and other websites --- mod/filestorage.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'mod/filestorage.php') diff --git a/mod/filestorage.php b/mod/filestorage.php index 43ea17789..3e87dccb8 100644 --- a/mod/filestorage.php +++ b/mod/filestorage.php @@ -101,7 +101,7 @@ function filestorage_content(&$a) { } $file = intval(argv(2)); - $r = q("select id, folder, filename, revision, flags, hash, allow_cid, allow_gid, deny_cid, deny_gid from attach where id = %d and uid = %d limit 1", + $r = q("select id, uid, folder, filename, revision, flags, hash, allow_cid, allow_gid, deny_cid, deny_gid from attach where id = %d and uid = %d limit 1", intval($file), intval($owner) ); @@ -110,6 +110,7 @@ function filestorage_content(&$a) { $channel = $a->get_channel(); + $cloudpath = get_cloudpath($f); $aclselect_e = populate_acl($f); $is_a_dir = (($f['flags'] & ATTACH_FLAG_DIR) ? true : false); @@ -118,6 +119,7 @@ function filestorage_content(&$a) { $o = replace_macros(get_markup_template('attach_edit.tpl'), array( '$header' => t('Edit file permissions'), '$file' => $f, + '$cloudpath' => z_root() . '/' . $cloudpath, '$uid' => $channel['channel_id'], '$channelnick' => $channel['channel_address'], '$permissions' => t('Permissions'), @@ -126,6 +128,7 @@ function filestorage_content(&$a) { '$backlink' => t('Return to file list'), '$isadir' => $is_a_dir, '$cpdesc' => t('Copy/paste this code to attach file to a post'), + '$cpldesc' => t('Copy/paste this URL to link file from a web page'), '$submit' => t('Submit') )); -- cgit v1.2.3