New fix for empty query strings. The QUERY_STRING in request.META is not set the same way under the builtin server as under Apache; under apache there will be a QUERY_STRING entry wich is explicitly Null. Handle this.

- Legacy-Id: 3028
This commit is contained in:
Henrik Levkowetz 2011-04-07 09:06:38 +00:00
parent fcaec522dc
commit e9ec0c8a26

View file

@ -336,7 +336,8 @@ def ical_agenda(request, num=None):
wgs = IETFWG.objects.filter(status=IETFWG.ACTIVE).order_by('group_acronym__acronym')
rgs = IRTF.objects.all().order_by('acronym')
areas = Area.objects.filter(status=Area.ACTIVE).order_by('area_acronym__acronym')
filter = (request.META.get('QUERY_STRING','')).lower().split(',');
q = request.META.get('QUERY_STRING','') or ""
filter = q.lower().split(',');
include = set(filter)
for slot in timeslots: