Changeset 420
- Timestamp:
- Oct 9, 2012, 7:44:30 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r419 r420 36 36 37 37 $DbResult = $this->Database->query('SELECT COUNT(*) FROM NetworkDevice LEFT JOIN NetworkDeviceType ON NetworkDeviceType.Id = NetworkDevice.Type WHERE (NetworkDeviceType.ShowOnline = 1) AND (NetworkDevice.Online = 1)'); 38 $DbRow = $DbResult->fetch_array(); 38 $DbRow = $DbResult->fetch_array(); 39 39 $OnlineComputers = $DbRow[0]; 40 40 … … 296 296 $Output .= '</td>'; 297 297 } 298 $Output .= '</table>'; 299 $Output .= '</table>'; 298 $Output .= '</tr></table>'; 300 299 return($Output); 301 300 } -
trunk/module.php
r157 r420 3 3 class Module 4 4 { 5 /** @var Database */ 5 6 var $Database; 7 /** @var System */ 6 8 var $System; 7 9 var $Title = ''; … … 9 11 var $CurrentPath = '/'; 10 12 11 function __construct() 13 function __construct() 12 14 { 13 15 }
Note:
See TracChangeset
for help on using the changeset viewer.