From b18a43275cc319f8fb1871ab03d628d6fc07c237 Mon Sep 17 00:00:00 2001 From: gustav_delius Date: Thu, 13 Jan 2005 17:53:23 +0000 Subject: [PATCH] if you use \n in single-quoted strings it will not be converted to a line break. --- lib/javascript.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/javascript.php b/lib/javascript.php index 7bf4a83c83..d4dd36c6fc 100644 --- a/lib/javascript.php +++ b/lib/javascript.php @@ -6,7 +6,7 @@ } if(!empty($CFG->aspellpath)) { // Enable global access to spelling feature. - echo '\n'; + echo ''."\n"; } ?> -- 2.39.5