Skip to content
Snippets Groups Projects
Commit 2cdbda06 authored by Anika Henke's avatar Anika Henke
Browse files

typo in do

darcs-hash:20061015222615-d5083-774269139d15c9a12b364e2c88dea46b477c912e.gz
parent 7b782bd2
No related branches found
No related tags found
No related merge requests found
...@@ -98,17 +98,17 @@ function check(){ ...@@ -98,17 +98,17 @@ function check(){
} }
if (isset($conf['changelog_old']) && @file_exists($conf['changelog_old'])) { if (isset($conf['changelog_old']) && @file_exists($conf['changelog_old'])) {
msg('Old changelog exists.', 0); msg('Old changelog exists', 0);
} }
if (@file_exists($conf['changelog'].'_failed')) { if (@file_exists($conf['changelog'].'_failed')) {
msg('Importing old changelog failed.', -1); msg('Importing old changelog failed', -1);
} else if (@file_exists($conf['changelog'].'_importing')) { } else if (@file_exists($conf['changelog'].'_importing')) {
msg('Importing old changelog now.', 0); msg('Importing old changelog now.', 0);
} else if (@file_exists($conf['changelog'].'_import_ok')) { } else if (@file_exists($conf['changelog'].'_import_ok')) {
msg('Old changelog imported.', 1); msg('Old changelog imported', 1);
if (!plugin_isdisabled('importoldchangelog')) { if (!plugin_isdisabled('importoldchangelog')) {
msg('Importoldchangelog plugin not disabled after import.', -1); msg('Importoldchangelog plugin not disabled after import', -1);
} }
} }
...@@ -175,7 +175,7 @@ function check(){ ...@@ -175,7 +175,7 @@ function check(){
if($INFO['writable']){ if($INFO['writable']){
msg('The current page is writable by you',0); msg('The current page is writable by you',0);
}else{ }else{
msg('The current page is not writable you',0); msg('The current page is not writable by you',0);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment