1
0
mirror of https://github.com/prasathmani/tinyfilemanager.git synced 2025-07-08 10:55:11 +02:00

Fix spelling of "copyied" after copying file (#196)

Should be "copied".
This commit is contained in:
typewriter1
2019-07-23 05:12:22 +01:00
committed by Prasath Mani
parent 5386b89aaf
commit 21094a66ee

View File

@ -595,7 +595,7 @@ if (isset($_GET['copy'], $_GET['finish']) && !FM_READONLY) {
} }
} else { } else {
if (fm_rcopy($from, $dest)) { if (fm_rcopy($from, $dest)) {
fm_set_msg(sprintf('Copyied from <b>%s</b> to <b>%s</b>', fm_enc($copy), fm_enc($msg_from))); fm_set_msg(sprintf('Copied from <b>%s</b> to <b>%s</b>', fm_enc($copy), fm_enc($msg_from)));
} else { } else {
fm_set_msg(sprintf('Error while copying from <b>%s</b> to <b>%s</b>', fm_enc($copy), fm_enc($msg_from)), 'error'); fm_set_msg(sprintf('Error while copying from <b>%s</b> to <b>%s</b>', fm_enc($copy), fm_enc($msg_from)), 'error');
} }