* [Cluster-devel] conga/luci/site/luci/Extensions LuciZope.py
@ 2007-07-26 5:32 rmccabe
0 siblings, 0 replies; only message in thread
From: rmccabe @ 2007-07-26 5:32 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: conga
Branch: RHEL5
Changes by: rmccabe at sourceware.org 2007-07-26 05:32:38
Modified files:
luci/site/luci/Extensions: LuciZope.py
Log message:
Fix for 249066
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/LuciZope.py.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.1.4.1&r2=1.1.4.2
--- conga/luci/site/luci/Extensions/LuciZope.py 2007/06/18 18:39:32 1.1.4.1
+++ conga/luci/site/luci/Extensions/LuciZope.py 2007/07/26 05:32:38 1.1.4.2
@@ -128,11 +128,11 @@
ret = {}
for i in varlist:
pval = None
- if req.has_key(i):
+ if req and req.has_key(i):
pval = req[i].strip()
if not pval:
pval = None
- if pval is None:
+ if req and pval is None:
if req.form and req.form.has_key(i):
pval = req.form[i].strip()
if not pval:
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-07-26 5:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-26 5:32 [Cluster-devel] conga/luci/site/luci/Extensions LuciZope.py rmccabe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).