[cpif] r378 - trunk/frontend-web
svn at argo.es
svn at argo.es
Tue Sep 25 00:26:29 CEST 2007
Author: jcea
Date: Tue Sep 25 00:26:28 2007
New Revision: 378
Log:
Modified:
trunk/frontend-web/url_nuevo_hilo_POST.py
trunk/frontend-web/url_nuevo_post_POST.py
Modified: trunk/frontend-web/url_nuevo_hilo_POST.py
==============================================================================
--- trunk/frontend-web/url_nuevo_hilo_POST.py (original)
+++ trunk/frontend-web/url_nuevo_hilo_POST.py Tue Sep 25 00:26:28 2007
@@ -23,7 +23,7 @@
return None
if not usuario : # Acceso anonimo
return (302,{"Location":"/LOGIN/indice/%d" % metatag},"")
- if not database.user_has_metatag_access(conn,usuario,metatag) :
+ if not database.user_has_metatag_access(conn,usuario,metatag,write=True) :
return None
import cgi
Modified: trunk/frontend-web/url_nuevo_post_POST.py
==============================================================================
--- trunk/frontend-web/url_nuevo_post_POST.py (original)
+++ trunk/frontend-web/url_nuevo_post_POST.py Tue Sep 25 00:26:28 2007
@@ -24,7 +24,7 @@
if not usuario : # Acceso anonimo
return (302,{"Location":"/LOGIN/hilo/%d" % hilo}, "")
import database
- if not database.user_has_metatag_access(conn,usuario,metatag) :
+ if not database.user_has_metatag_access(conn,usuario,metatag,write=True) :
return None
if database.thread_is_readonly(conn,hilo) :
More information about the cpif
mailing list