Changeset 420


Ignore:
Timestamp:
Oct 9, 2012, 7:44:30 AM (12 years ago)
Author:
chronos
Message:
  • Opraveno: Chybějící ukončovací HTML značka řádku tabulky.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r419 r420  
    3636
    3737    $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();   
    3939    $OnlineComputers = $DbRow[0];
    4040
     
    296296      $Output .= '</td>';
    297297    } 
    298     $Output .= '</table>';
    299     $Output .= '</table>';
     298    $Output .= '</tr></table>';
    300299    return($Output);
    301300  }
  • trunk/module.php

    r157 r420  
    33class Module
    44{
     5  /** @var Database */
    56  var $Database;
     7  /** @var System */
    68  var $System;
    79  var $Title = '';
     
    911  var $CurrentPath = '/';
    1012
    11   function __construct() 
     13  function __construct()
    1214  {
    1315  }
Note: See TracChangeset for help on using the changeset viewer.