Changeset 158
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r157 r158 1 1.10 2 3 * Fixed a bug where queue items with an ETA over 24 but less than 48 4 hours long weren't showing the days in the ETA 5 1 6 1.9 2 7 -
trunk/README
r156 r158 1 HellaWorld v1. 9-SVN1 HellaWorld v1.10-SVN 2 2 --------------------- 3 3 -
trunk/classes/HellaController.php
r154 r158 543 543 * $seconds is the number of seconds to format 544 544 */ 545 $days = floor($seconds /86400);546 $seconds = $seconds - ($days*86400);547 548 $hours = floor($seconds /3600);549 $seconds = $seconds - ($hours*3600);550 551 $minutes = floor($seconds /60);552 $seconds = $seconds - ($minutes*60);545 $days = floor($seconds / 86400); 546 $seconds -= ($days * 86400); 547 548 $hours = floor($seconds / 3600); 549 $seconds -= ($hours * 3600); 550 551 $minutes = floor($seconds / 60); 552 $seconds -= ($minutes * 60); 553 553 554 554 $output = ''; 555 555 556 if ($days > 1) {556 if ($days > 0) { 557 557 $output = $days . 'd '; 558 558 } -
trunk/index.php
r157 r158 89 89 } 90 90 91 $hellaworldversion = "1. 9-SVN";91 $hellaworldversion = "1.10-SVN"; 92 92 if (!isset($config['iprange'])) { 93 93 $iprange = '192.168.0.0/16,10.0.0.0/8,172.168.0.0/12';
