diff options
Diffstat (limited to 'public/emotes/upload.php')
| -rw-r--r-- | public/emotes/upload.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/public/emotes/upload.php b/public/emotes/upload.php index f890ec2..8b197a2 100644 --- a/public/emotes/upload.php +++ b/public/emotes/upload.php @@ -387,6 +387,11 @@ if ($is_manual) { abort_upload($path, $db, $id); exit; } + + if (EMOTE_STORE_ORIGINAL) { + $ext = get_file_extension($image["tmp_name"]) ?? ""; + move_uploaded_file($image["tmp_name"], "$path/original.$ext"); + } } if (ACCOUNT_LOG_ACTIONS) { |
