Changeset 138
- Timestamp:
- 09/03/07 21:37:45 (16 months ago)
- Files:
-
- 1 modified
-
trunk/templates/default.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/default.php
r134 r138 173 173 <li class="queuebox <?php echo (((string)$item->type == 'SUCCESS') ? 'good' : 'bad'); ?>"> 174 174 <div class="queuetitle"> 175 <?php echo $item->archiveName; ?>175 <?php echo (string)$item->archiveName; ?> 176 176 </div> 177 177 <ul class="queuecontrols"> 178 178 <li class="control"><a href="<?php echo $self; ?>?removefinished=<?php echo $i; ?>"><?php echo _('Remove'); ?></a></li> 179 179 </ul> 180 <div class="queuestats"><?php printf(_('Finished on: %s Processing Time: %s'), date('M dS - H:i:s', (int)$item->finishedTime), $time->elapsedTime); if (trim($item->parMessage) != ''): printf(_(' Par message: %s'),$item->parMessage); endif; ?></div>180 <div class="queuestats"><?php printf(_('Finished on: %s Processing Time: %s'), date('M dS - H:i:s', (int)$item->finishedTime), (string)$item->elapsedTime); if (trim((string)$item->parMessage) != ''): printf(_(' Par message: %s'), (string)$item->parMessage); endif; ?></div> 181 181 </li> 182 182 <?php endforeach; ?>
