diff --git a/action.php b/action.php index dec58d6..f77e162 100644 --- a/action.php +++ b/action.php @@ -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); } }