Skip to content

Commit

Permalink
MDL-45104 logging: Fix spelling of writing
Browse files Browse the repository at this point in the history
  • Loading branch information
John Okely committed Feb 25, 2016
1 parent 316d657 commit 3f195ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions admin/renderer.php
Expand Up @@ -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);
Expand Down Expand Up @@ -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'));
Expand Down
2 changes: 1 addition & 1 deletion lang/en/moodle.php
Expand Up @@ -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';
Expand Down

0 comments on commit 3f195ab

Please sign in to comment.