diff --git a/django/template/defaultfilters.py b/django/template/defaultfilters.py index 5cee0ab2445..7ef531e688e 100644 --- a/django/template/defaultfilters.py +++ b/django/template/defaultfilters.py @@ -433,7 +433,7 @@ def first(value): return value[0] except IndexError: return u'' -first.is_safe = True +first.is_safe = False def join(value, arg): """Joins a list with a string, like Python's ``str.join(list)``."""