diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-07-11 07:12:29 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-07-11 07:12:29 -0700 |
commit | 8c6c3801bb6b9f9d4d68aef0cf808abcc667d342 (patch) | |
tree | 44e0ab9c70f86b631946251c3cbbbcb775b92508 | |
parent | f2a3fa46f5a5cc31d251c1557f8b1cfbb6f46027 (diff) |
Fix a typo in the last commit. I left off a closing paren.
-rw-r--r-- | modules/gallery/views/simple_uploader.html.php | 2 |
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(); |