From 43d91e34c92fa806df907708dfe637652f854e4a Mon Sep 17 00:00:00 2001 From: skodak Date: Sun, 17 May 2009 16:58:16 +0000 Subject: [PATCH] MDL-19184 moodle specific tinymce localization - fixed sloppy includes --- lib/editor/tinymce/extra/strings.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/editor/tinymce/extra/strings.php b/lib/editor/tinymce/extra/strings.php index 93b250e159..7750430467 100644 --- a/lib/editor/tinymce/extra/strings.php +++ b/lib/editor/tinymce/extra/strings.php @@ -46,7 +46,7 @@ foreach (get_langpack_locations('en_utf8') as $location) { if (!file_exists($location)) { continue; } - include_once($location); + include($location); } // find parent language @@ -55,7 +55,7 @@ if ($parent = get_parent_language($lang)) { if (!file_exists($location)) { continue; } - include_once($location); + include($location); } } @@ -65,7 +65,7 @@ if ($lang !== 'en_utf8') { if (!file_exists($location)) { continue; } - include_once($location); + include($location); } } -- 2.39.5