diff --git a/admin/renderer.php b/admin/renderer.php index cdf1d8a18e029..261bdc89df2e0 100644 --- a/admin/renderer.php +++ b/admin/renderer.php @@ -287,7 +287,7 @@ public function admin_notifications_page($maturity, $insecuredataroot, $errorsdi $output .= $this->header(); $output .= $this->maturity_info($maturity); - $output .= $this->legacy_log_store_writting_error(); + $output .= $this->legacy_log_store_writing_error(); $output .= empty($CFG->disableupdatenotifications) ? $this->available_updates($availableupdates, $availableupdatesfetch) : ''; $output .= $this->insecure_dataroot_warning($insecuredataroot); $output .= $this->display_errors_warning($errorsdisplayed); @@ -1961,7 +1961,7 @@ public function upgradekey_form_page($url) { * * @return string An error message if writing to the legacy log store is enabled. */ - protected function legacy_log_store_writting_error() { + protected function legacy_log_store_writing_error() { $enabled = get_config('logstore_legacy', 'loglegacy'); if ($enabled) { return $this->warning(get_string('legacylogginginuse')); diff --git a/lang/en/moodle.php b/lang/en/moodle.php index fc66a831b8077..2b5ecd9503e29 100644 --- a/lang/en/moodle.php +++ b/lang/en/moodle.php @@ -1032,7 +1032,7 @@ $string['latestlanguagepack'] = 'Check for latest language pack on moodle.org'; $string['layouttable'] = 'Layout table'; $string['leavetokeep'] = 'Leave blank to keep current password'; -$string['legacylogginginuse'] = 'This site currently has writting to the legacy log store enabled. Writing to this log store is deprecated. Please write to a supported log store such as "standard" or "external".'; +$string['legacylogginginuse'] = 'This site currently has writing to the legacy log store enabled. Writing to this log store is deprecated. Please write to a supported log store such as "standard" or "external".'; $string['legacythemeinuse'] = 'This site is being displayed to you in compatibility mode because your browser is too old.'; $string['license'] = 'Licence'; $string['licenses'] = 'Licences';