MDL-19184 moodle specific tinymce localization - fixed sloppy includes

This commit is contained in:
skodak
2009-05-17 16:58:16 +00:00
parent 6eca5390fe
commit 43d91e34c9
+3 -3
View File
@@ -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);
}
}