summaryrefslogtreecommitdiff
path: root/lib/notes/view.php
diff options
context:
space:
mode:
authorroot <root@adnab.me>2014-01-31 19:08:03 +0100
committerroot <root@adnab.me>2014-01-31 19:08:03 +0100
commit77048675abf5fad43e8b5371c35e1c86b3be59c2 (patch)
tree2d77c78988a4a354af3653481785aeea00429e5e /lib/notes/view.php
parent2a274c011d177f5ad1e863301b8b88c560a3829d (diff)
downloadBits-adnab.me-site.tar.gz
Bits-adnab.me-site.zip
Privilege changesadnab.me-site
Diffstat (limited to 'lib/notes/view.php')
-rw-r--r--lib/notes/view.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/notes/view.php b/lib/notes/view.php
index f81b6d7..a6a014c 100644
--- a/lib/notes/view.php
+++ b/lib/notes/view.php
@@ -9,7 +9,7 @@ $note = mysql_fetch_assoc(sql(
"LEFT JOIN notes nb ON na.parent = nb.id LEFT JOIN account ON account.id = na.owner ".
"WHERE na.id = $noteid"
));
-assert_error($note && ($note['public'] != 0 || $note['owner'] == $user['id']),
+assert_error($note && ($note['public'] != 0 || $note['owner'] == $user['id'] || $user['priv'] >= $priv_admin),
"This note does not exist, or you are not allowed to see it.");
$can_new = ($user['priv'] >= $apps['notes']['new'] && $user['id'] == $note['owner']);