From 193abd9a93b7dd56281c70ec98d5bc65b2edbfa1 Mon Sep 17 00:00:00 2001 From: Robert Gaggl Date: Wed, 6 Feb 2002 18:06:57 +0000 Subject: [PATCH] html-tags are stripped for weblog-title --- code/Site/objectFunctions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Site/objectFunctions.js b/code/Site/objectFunctions.js index 95269d26..9639a366 100644 --- a/code/Site/objectFunctions.js +++ b/code/Site/objectFunctions.js @@ -77,7 +77,7 @@ function evalPreferences(param,modifier) { result.error = true; return (result); } - this.title = param.title; + this.title = stripTags(param.title); this.tagline = param.tagline; this.email = param.email; this.bgcolor = param.bgcolor;