Index: backup_migrate.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/backup_migrate/backup_migrate.module,v
retrieving revision 1.8
diff -u -r1.8 backup_migrate.module
--- backup_migrate.module	2 Aug 2009 21:56:55 -0000	1.8
+++ backup_migrate.module	21 Dec 2009 01:02:50 -0000
@@ -642,12 +642,13 @@
 
   // Backup succeeded, 
   $time = timer_stop('backup_migrate_backup');
-  $message = 'Site backed up successfully to %file in destination %dest in !time ms.';
+  $message = 'Site backed up successfully to %file in destination %dest in <span title="precisely !time_ms ms">!time_s seconds</span>.';
   $destination = backup_migrate_get_destination($settings->destination_id);
   $params = array(
     '%file' => $settings->filename,
     '%dest' => $destination->get('name'),
-    '!time' => $time['time'],
+    '!time_s' => round($time['time']/1000,1),
+    '!time_ms' => $time['time'],
   );
   if ($links = $destination->get_file_links($file->file_id())) {
     $params['!links'] = implode(", ", $links);

