diff options
author | Mario <mario@mariovavti.com> | 2021-01-03 10:07:54 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-03 10:07:54 +0000 |
commit | 6d95f5fc989644473442aa2f36358efe77b877c8 (patch) | |
tree | 57ecf8ba993e47694c516349863a6f4133ae24fb /Zotlabs/Storage/Browser.php | |
parent | 7684861249c22293e424f1bc62790fa06596b97e (diff) | |
download | volse-hubzilla-6d95f5fc989644473442aa2f36358efe77b877c8.tar.gz volse-hubzilla-6d95f5fc989644473442aa2f36358efe77b877c8.tar.bz2 volse-hubzilla-6d95f5fc989644473442aa2f36358efe77b877c8.zip |
files_ng: slightly change the way we display link bbcode
Diffstat (limited to 'Zotlabs/Storage/Browser.php')
-rw-r--r-- | Zotlabs/Storage/Browser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Storage/Browser.php b/Zotlabs/Storage/Browser.php index 9ca2474e0..2b6e1c16b 100644 --- a/Zotlabs/Storage/Browser.php +++ b/Zotlabs/Storage/Browser.php @@ -324,7 +324,7 @@ class Browser extends DAV\Browser\Plugin { } $ft['attach_bbcode'] = $attach_bbcode; - $link_bbcode = '[zrl]' . $ft['full_path'] . '[/zrl]'; + $link_bbcode = '[zrl=' . $ft['full_path'] . ']' . $ft['name'] . '[/zrl]'; $ft['link_bbcode'] = $link_bbcode; $f[] = $ft; |