summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/gallery/views/simple_uploader.html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/views/simple_uploader.html.php b/modules/gallery/views/simple_uploader.html.php
index bf3d7c57..06a2eaff 100644
--- a/modules/gallery/views/simple_uploader.html.php
+++ b/modules/gallery/views/simple_uploader.html.php
@@ -258,7 +258,7 @@
var msg = "(<?= t("completed __COMPLETED__ of __TOTAL__") ?>)";
msg = msg.replace("__COMPLETED__", stats.successful_uploads);
msg = msg.replace("__TOTAL__", stats.files_queued + stats.successful_uploads +
- stats.upload_errors + stats.upload_cancelled + stats.queue_errors;
+ stats.upload_errors + stats.upload_cancelled + stats.queue_errors);
$("#gUploadQueueInfo").text(msg);
if (stats.files_queued === 0) {
$("#gUploadCancel").hide();