Skip to content
Snippets Groups Projects
Commit 8b699538 authored by runemaster's avatar runemaster
Browse files

Check for user posting rights and a little template.can_post dohoocky similar...

Check for user posting rights and a little template.can_post dohoocky similar to template.can_delete thinger.
parent 23f7dbe3
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,10 @@ else {
error("You can't read messages in this sub!");
}
if(msg_area.sub[sub].can_post) {
template.can_post=true;
}
template.idx=msgbase.get_msg_index(false,m);
if(sub=='mail' && template.idx.to!=user.number)
error("You can only read e-mail messages addressed to yourself!");
......
......@@ -178,6 +178,22 @@ for(displayed=0;displayed<max_messages && last_offset >= 0;last_offset--) {
displayed++;
}
if(sub=='mail' && user.alias!='Guest') {
template.can_post=true;
}
else {
if(msg_area.sub[sub].can_post) {
template.can_post=true;
}
}
if(sub=='mail') {
template.post_button="Create New E-Mail";
}
else {
template.post_button="Create New Message";
}
write_template("msgs/msgs.inc");
write_template("footer.inc");
msgs_done();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment