Changeset 717


Ignore:
Timestamp:
Jan 1, 2015, 2:36:38 PM (10 years ago)
Author:
chronos
Message:
  • Fixed: Wrong column visual display.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/Version.php

    r716 r717  
    11<?php
    22
    3 $Revision = 716; // Subversion revision
     3$Revision = 717; // Subversion revision
    44$DatabaseRevision = 715; // SQL structure revision
    55$ReleaseTime = strtotime('2015-01-01');
  • trunk/Modules/Network/HostList.php

    r669 r717  
    3636      } else
    3737      {
    38         $Output .= '<tr><td colspan="2" style="text-align: left; font-weight: bold; '.$Style.'">'.$Device['Name'].'</td><td>'.$Device['HostType'].'</td><td style="text-align: right;">'.HumanDate($Device['LastOnline']).'</td><td style="text-align: right;">'.$Device['UserName'].'</td></tr>';
     38        $Output .= '<tr><td colspan="3" style="text-align: left; font-weight: bold; '.$Style.'">'.$Device['Name'].'</td><td>'.$Device['HostType'].'</td><td style="text-align: right;">'.HumanDate($Device['LastOnline']).'</td><td style="text-align: right;">'.$Device['UserName'].'</td></tr>';
    3939        $DbResult2 = $this->Database->query('SELECT * FROM NetworkInterface WHERE Device = '.$Device['Id']);
    4040        while($Interface = $DbResult2->fetch_assoc())
     
    4444          $InterfaceName = $Device['Name'];
    4545          if($Interface['Name'] != '') $InterfaceName .= '-'.$Interface['Name'];
    46           $Output .= '<tr><td style="text-align: left; '.$Style.'">&nbsp;&nbsp;'.$InterfaceName.'</td><td>'.$Interface['LocalIP'].'</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>';
     46          $Output .= '<tr><td style="text-align: left; '.$Style.'">&nbsp;&nbsp;'.$InterfaceName.'</td><td>'.$Interface['LocalIP'].'</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>';
    4747        }     
    4848      }
Note: See TracChangeset for help on using the changeset viewer.