highlight matches in clips

This commit is contained in:
rolux 2012-02-01 12:01:39 +00:00
commit daaabba071
12 changed files with 59 additions and 39 deletions

View file

@ -552,7 +552,7 @@ class Item(models.Model):
if isinstance(value, bool):
value = value and 'true' or 'false'
if isinstance(value, basestring):
value = value.strip()
value = ox.decodeHtml(ox.stripTags(value.strip()))
f.value = value
f.save()
else: