Changed copy messages

This commit is contained in:
Simon DELAGE 2014-09-11 08:49:17 +02:00
parent 507847e3b4
commit bf3e6d6227
1 changed files with 2 additions and 2 deletions

View File

@ -83,9 +83,9 @@ class action_plugin_userhomepage extends DokuWiki_Action_Plugin{
function copyFile($source = null, $dest = null) {
if (!copy(DOKU_INC.$source, DOKU_INC.$dest)) {
msg($this->getLang('copyerror').' : '.$source.' > '.$dest, -1);
msg($this->getLang('copyerror').' ('.$source.' > '.$dest.')', -1);
} else {
msg($this->getLang('copysuccess').' '.$source.' > '.$dest, 1);
msg($this->getLang('copysuccess').' ('.$source.' > '.$dest.')', 1);
}
}