diff options
Diffstat (limited to 'forum/utils/files.php')
-rw-r--r-- | forum/utils/files.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/forum/utils/files.php b/forum/utils/files.php index c698ede..b91957b 100644 --- a/forum/utils/files.php +++ b/forum/utils/files.php @@ -15,11 +15,14 @@ class File { public function show() { - global $PERMSTORE; + global $PERMSTORE, $current_user; echo "<div class=\"file\">\n"; - echo " <a class=\"delete\" href=\"?mode=filehandler&task=delete&fid=" . $this->fid . "\">Delete</a>\n"; + if($current_user->uid == 0) { + echo " <a class=\"delete\" href=\"?mode=filehandler&task=delete&fid=" . $this->fid . "\">Delete</a>\n"; + } echo " <div class=\"filename\">Filename: <a href=\"" . $this->link() . "\">" . $this->name . "</a>(" . $this->mimetype. ")</div>\n"; echo " <div class=\"filesize\">Size: " . ceil(filesize($PERMSTORE . "/" . $this->fid) / 1024) . "kb</div>\n"; + echo " <div class=\"insertcommand\">Use this command to insert the file: {{" . $this->fid . "}}</div>\n"; echo "</div>\n"; } |