Fixed an error in the `firstof` template tag when used with `TEMPLATE_STRING_IF_INVALID`. Thanks to Alex Gaynor for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10124 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f22418a6be
commit
9797d51efe
|
@ -74,7 +74,7 @@ class FirstOfNode(Node):
|
||||||
|
|
||||||
def render(self, context):
|
def render(self, context):
|
||||||
for var in self.vars:
|
for var in self.vars:
|
||||||
value = var.resolve(context)
|
value = var.resolve(context, True)
|
||||||
if value:
|
if value:
|
||||||
return smart_unicode(value)
|
return smart_unicode(value)
|
||||||
return u''
|
return u''
|
||||||
|
|
Loading…
Reference in New Issue