Introduction
Introduction Statistics Contact Development Disclaimer Help
Update blog post code, use new check_user function and remove now superfluous g…
git clone git://git.suckless.org/swerc
Log
Files
Refs
README
---
commit e6acb0386d12872e3efb967dbecbec8103325436
parent c3d234db80889e4eda620cd3ced232080fcdf68b
Author: [email protected] <unknown>
Date: Sat, 15 Nov 2008 20:44:34 +0100
Update blog post code, use new check_user function and remove now superfluous g…
Diffstat:
M lib/_apps/brag/post_form.tpl | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/lib/_apps/brag/post_form.tpl b/lib/_apps/brag/post_form.tpl
@@ -3,14 +3,13 @@ get_post_args target_blog_dir post_title post_body
if(~ $REQUEST_METHOD POST && ! ~ $#target_blog_dir 0 && ! ~ $#post_title 0) {
- get_user
-
+ # XXX Need a generic way to load the complete config hierarchy for a given…
if(test -f $sitedir/$target_blog_dir/_werc/config)
. $sitedir/$target_blog_dir/_werc/config
if(~ $#blog_editors_group 0)
echo Cant post to $target_blog_dir, no editors group set.
- if not if (! user_in_group $blog_editors_group)
+ if not if (! check_user $blog_editors_group)
echo Post to $target_blog_dir denied, user $logged_user not in group $…
if not if(! make_blog_post $target_blog_dir $post_title $post_body)
echo Posting to $target_blog_dir failed: $status
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.