req.py
changeset 9480 14159c600dad
parent 9469 032825bbacab
child 9720 a7210c912507
child 9818 e3d2012adcd0
--- a/req.py	Tue Dec 17 11:50:12 2013 +0100
+++ b/req.py	Tue Dec 17 11:50:31 2013 +0100
@@ -111,7 +111,9 @@
         user specific value if any, else using site value
         """
         if self.user:
-            return self.user.property_value(key)
+            val = self.user.property_value(key)
+            if val is not None:
+                return val
         return self.vreg.property_value(key)
 
     def etype_rset(self, etype, size=1):