diff options
author | Anika Henke <a.c.henke@arcor.de> | 2006-10-16 00:26:15 +0200 |
---|---|---|
committer | Anika Henke <a.c.henke@arcor.de> | 2006-10-16 00:26:15 +0200 |
commit | 2cdbda067e3b5cbbf4b6f34ba5902336e7cc936a (patch) | |
tree | 3b21adf10526eda9e6d8a6c02fb40d00b9f18320 | |
parent | 7b782bd2884f3f4324e4210a8e075795b16a5b9f (diff) | |
download | rpg-2cdbda067e3b5cbbf4b6f34ba5902336e7cc936a.tar.gz rpg-2cdbda067e3b5cbbf4b6f34ba5902336e7cc936a.tar.bz2 |
typo in do
darcs-hash:20061015222615-d5083-774269139d15c9a12b364e2c88dea46b477c912e.gz
-rw-r--r-- | inc/infoutils.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/inc/infoutils.php b/inc/infoutils.php index 3c7ba96a5..cdfe49dfd 100644 --- a/inc/infoutils.php +++ b/inc/infoutils.php @@ -98,17 +98,17 @@ function check(){ } 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')) { - msg('Importing old changelog failed.', -1); + msg('Importing old changelog failed', -1); } else if (@file_exists($conf['changelog'].'_importing')) { msg('Importing old changelog now.', 0); } else if (@file_exists($conf['changelog'].'_import_ok')) { - msg('Old changelog imported.', 1); + msg('Old changelog imported', 1); 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(){ if($INFO['writable']){ msg('The current page is writable by you',0); }else{ - msg('The current page is not writable you',0); + msg('The current page is not writable by you',0); } } |