Changeset 151
- Timestamp:
- 10/21/07 22:54:51 (15 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
js/hellaworld.php (modified) (1 diff)
-
templates/json.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r150 r151 16 16 * Fixed a bug where finished items were still trying to be read despite 17 17 the display of finished items being disabled. [ticket:15] 18 19 * Fixed a bug where only one processing item was showing after an auto 20 refresh when HellaNZB was processing multiple items. [ticket:14] 18 21 19 22 1.8 -
trunk/js/hellaworld.php
r148 r151 91 91 info += '<h2><?php echo _('Currently Processing'); ?></h2>'; 92 92 if (json.processing != null) { 93 info += '<div>' + json.processing + '</div>'; 93 for (i = 0; json.processing && i < json.processing.length; i ++) { 94 info += '<div>' + json.processing[i] + '</div>'; 95 } 94 96 } else { 95 97 info += '<div><?php echo _('Nothing'); ?></div>'; -
trunk/templates/json.php
r94 r151 51 51 $hellainfo['transferRate'] = $c->transferRate; 52 52 if ($c->processCount > 0) { 53 $hellainfo['processing'] = htmlspecialchars($c->processing[0]); 53 $hellainfo['processing'] = array(); 54 foreach ($c->processing as $processing) { 55 $hellainfo['processing'][] = htmlspecialchars($processing); 56 } 54 57 } 55 58 $hellainfo['queuelength'] = $c->queueLength;
