diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/reddav.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/reddav.php b/include/reddav.php index a802895de..24eca9e81 100644 --- a/include/reddav.php +++ b/include/reddav.php @@ -925,6 +925,14 @@ class RedBrowser extends DAV\Browser\Plugin { </form> </td></tr>'; + + if($this->auth->owner_id && $this->auth->owner_id == $this->auth->channel_id) { + $channel = get_app()->get_channel(); + if($channel) { + $output .= '<tr><td> </td></tr><tr><td colspan="2"><a href="filestorage/' . $channel['channel_address'] . '" >' . t('Edit File properties') . '</a></td></tr>'; + } + } + } |