Changeset 623
- Timestamp:
- Dec 29, 2013, 7:42:26 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 20 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r620 r623 1 1 <?php 2 2 3 $Revision = 62 0; // Subversion revision3 $Revision = 623; // Subversion revision 4 4 $DatabaseRevision = 620; // SQL structure revision 5 $ReleaseTime = '2013-12-2 6';5 $ReleaseTime = '2013-12-29'; -
trunk/Common/Form/Types/Type.php
r605 r623 23 23 include(dirname(__FILE__).'/RandomHash.php'); 24 24 include(dirname(__FILE__).'/MacAddress.php'); 25 include(dirname(__FILE__).'/Image.php'); 25 26 26 27 class Type … … 56 57 'MacAddress' => array('Name' => 'MacAddress', 'Class' => 'MacAddress', 'ParentType' => '', 'Parameters' => array()), 57 58 'IPv6Address' => array('Name' => 'IPv6Address', 'Class' => 'IPv6Address', 'ParentType' => '', 'Parameters' => array()), 59 'Image' => array('Name' => 'Image', 'Class' => 'Image', 'ParentType' => '', 'Parameters' => array()), 58 60 ); 59 61 } -
trunk/Common/Setup/Updates.php
r620 r623 568 568 601 => array('Revision' => 615, 'Function' => 'UpdateTo615'), 569 569 615 => array('Revision' => 619, 'Function' => 'UpdateTo619'), 570 6 20=> array('Revision' => 620, 'Function' => 'UpdateTo620'),570 619 => array('Revision' => 620, 'Function' => 'UpdateTo620'), 571 571 )); 572 572 } -
trunk/Modules/Network/Network.php
r620 r623 54 54 while($DbRow2 = $DbResult2->fetch_assoc()) 55 55 { 56 $LowFrequency = $DbRow['Frequency'] - $DbRow2['ChannelWidth'] / 2 +$DbRow2['ChannelWidthLower'];56 $LowFrequency = $DbRow['Frequency'] - $DbRow2['ChannelWidth'] / 2 - $DbRow2['ChannelWidthLower']; 57 57 $HighFrequency = $DbRow['Frequency'] + $DbRow2['ChannelWidth'] / 2 + $DbRow2['ChannelWidthUpper']; 58 58 $Output .= '<tr><td>'.$DbRow2['SSID'].'</td>'; … … 302 302 'Description' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => ''), 303 303 ), 304 'Actions' => array( 305 array('Caption' => 'Frekvenční plán', 'URL' => '/network/frequency-plan/'), 306 ), 304 307 )); 305 308 } -
trunk/Modules/System/System.php
r588 r623 199 199 'Table' => 'ActionIcon', 200 200 'Items' => array( 201 'Name' => array('Type' => ' String', 'Caption' => 'Název souboru', 'Default' => ''),201 'Name' => array('Type' => 'Image', 'Caption' => 'Název souboru', 'Default' => ''), 202 202 'Items' => array('Type' => 'TActionListIcon', 'Caption' => 'Položky', 'Default' => ''), 203 203 ),
Note:
See TracChangeset
for help on using the changeset viewer.