From 21094a66eeee11f02a3862f83ea577ac9b74764c Mon Sep 17 00:00:00 2001 From: typewriter1 <40742741+typewriter1@users.noreply.github.com> Date: Tue, 23 Jul 2019 05:12:22 +0100 Subject: [PATCH] Fix spelling of "copyied" after copying file (#196) Should be "copied". --- tinyfilemanager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyfilemanager.php b/tinyfilemanager.php index 45918fb..7ef7bab 100644 --- a/tinyfilemanager.php +++ b/tinyfilemanager.php @@ -595,7 +595,7 @@ if (isset($_GET['copy'], $_GET['finish']) && !FM_READONLY) { } } else { if (fm_rcopy($from, $dest)) { - fm_set_msg(sprintf('Copyied from %s to %s', fm_enc($copy), fm_enc($msg_from))); + fm_set_msg(sprintf('Copied from %s to %s', fm_enc($copy), fm_enc($msg_from))); } else { fm_set_msg(sprintf('Error while copying from %s to %s', fm_enc($copy), fm_enc($msg_from)), 'error'); }