Browse Source

change last run to last ran

LukePulverenti 12 years ago
parent
commit
40501ac1f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.WebDashboard/Html/scripts/ScheduledTasksPage.js

+ 1 - 1
MediaBrowser.WebDashboard/Html/scripts/ScheduledTasksPage.js

@@ -100,7 +100,7 @@
 
                 if (task.LastExecutionResult) {
 
-                    var text = "Last run " + humane_date(task.LastExecutionResult.EndTimeUtc) + ', taking ' + humane_elapsed(task.LastExecutionResult.StartTimeUtc, task.LastExecutionResult.EndTimeUtc);
+                    var text = "Last ran " + humane_date(task.LastExecutionResult.EndTimeUtc) + ', taking ' + humane_elapsed(task.LastExecutionResult.StartTimeUtc, task.LastExecutionResult.EndTimeUtc);
 
                     if (task.LastExecutionResult.Status == "Failed") {
                         text += " <span style='color:#FF0000;'>(failed)</span>";