Changeset 858 for trunk/Modules
- Timestamp:
- May 8, 2019, 7:59:39 PM (6 years ago)
- Location:
- trunk/Modules
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/Network.php
r855 r858 142 142 $this->System->RegisterPage(array('network', 'frequency-plan'), 'PageFrequencyPlan'); 143 143 144 $this->System->RegisterCommandLine(' config', array($this, 'ImportNetworkLog'));144 $this->System->RegisterCommandLine('networklogimport', array($this, 'ImportNetworkLog')); 145 145 146 146 $this->System->FormManager->RegisterClass('NetworkDomainAlias', array( -
trunk/Modules/NetworkTopology/topologie2.php
r738 r858 119 119 imageline($this->Image, $ParentHostPos['x'], $ParentHostPos['y'] + $this->HostHeight * 0.5, $HostPos['x'], $ParentHostPos['y'] + $this->HostHeight * 0.5, $this->LineColor); 120 120 imageline($this->Image, $HostPos['x'], $ParentHostPos['y'] + $this->HostHeight * 0.5, $HostPos['x'], $HostPos['y'], $this->LineColor); 121 $this->DrawNode( &$Host['subitems'][$Index]);121 $this->DrawNode($Host['subitems'][$Index]); 122 122 imagecopy($this->Image, $this->ImageComputer, $HostPos['x'] - imagesx($this->ImageComputer) * 0.5, $HostPos['y'] - imagesy($this->ImageComputer) * 0.5, 0, 0, 30, 30); 123 123 imagestring($this->Image, 2, $HostPos['x'] - (strlen($SubHost['name']) * imagefontwidth(2)) / 2, $HostPos['y'] + imagesy($this->ImageComputer) * 0.5, $SubHost['name'], $this->TextColor); -
trunk/Modules/Portal/Portal.php
r790 r858 13 13 $this->License = 'GNU/GPLv3'; 14 14 $this->Description = 'Community portal.'; 15 $this->Dependencies = array('News' );15 $this->Dependencies = array('News', 'User'); 16 16 } 17 17 -
trunk/Modules/User/User.php
r790 r858 48 48 `HostName` varchar(255) NOT NULL DEFAULT '', 49 49 `ScriptName` varchar(255) NOT NULL, 50 `StayLogged` INT NOT NULL, 51 `StayLoggedHash` VARCHAR(40) NOT NULL, 50 52 PRIMARY KEY (`Id`), 51 53 KEY `User` (`User`)
Note:
See TracChangeset
for help on using the changeset viewer.