Changeset 935
- Timestamp:
- May 11, 2022, 10:10:02 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkConfigLinux/Generators/CheckPorts.php
r932 r935 3 3 class ConfigCheckPorts extends NetworkConfigItem 4 4 { 5 function CheckPortStatus( $IP, $Port,$Protocol = 'tcp'): int5 function CheckPortStatus(string $IP, int $Port, string $Protocol = 'tcp'): int 6 6 { 7 7 $Timeout = 1; -
trunk/Modules/NetworkConfigRouterOS/Generators/AddressPortability.php
r874 r935 42 42 } else $System->Database->insert('NetworkInterfacePortable', array('NetworkInterface' => $InterfaceId, 'DynamicIP' => $Properties['active-address'], 'Time' => TimeToMysqlDateTime($Properties['expires-after']), 'Update' => 1)); 43 43 } else echo('Not registred'."\n"); 44 //print_r($Properties);45 44 } 46 45 } -
trunk/Modules/NetworkTopology/topologie-img.php
r874 r935 90 90 $DbResult = $Database->query($query); 91 91 $item = $DbResult->fetch_array(); 92 //print_r($item);93 92 if ($item) 94 93 { -
trunk/Modules/TimeMeasure/Main.php
r929 r935 253 253 $Output .= $PageList['Output']; 254 254 255 //ShowPage($Output); 256 //echo($PrefixMultiplier->Add('-0.000000071112345', 'B')); 255 //ShowPage($Output); 257 256 $Output .= '</div>'; 258 257 return $Output; -
trunk/Packages/Common/Mail.php
r930 r935 135 135 if ($this->AgentIdent != '') $this->Headers['X-Mailer'] = $this->AgentIdent; 136 136 if ($this->ReplyTo != '') $this->Headers['Reply-To'] = $this->ReplyTo; 137 if ($this->From != '') 138 { 137 if ($this->From != '') 138 { 139 139 $IndexStart = strpos($this->From, '<'); 140 140 if ($IndexStart !== false)
Note:
See TracChangeset
for help on using the changeset viewer.