Skip to content

Commit 134eeb3

Browse files
committed
Fix ACI0105433 (deuze)
1 parent 164a4fd commit 134eeb3

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

Project/Sources/Classes/Tools.4dm

+4-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@ singleton Class constructor()
1414

1515
Function init()
1616

17-
If (Is Windows || Is macOS)
18-
If (Application type=4D Remote mode)
19-
cs.Tools.me.webLicenseAvailable:=Is license available(4D Client Web license)
20-
Else
21-
cs.Tools.me.webLicenseAvailable:=(Is license available(4D Web license) | Is license available(4D Web local license) | Is license available(4D Web one connection license))
22-
End if
17+
If (Application type=4D Remote mode)
18+
cs.Tools.me.webLicenseAvailable:=Is license available(4D Client Web license)
19+
Else
20+
cs.Tools.me.webLicenseAvailable:=(Is license available(4D Web license) | Is license available(4D Web local license) | Is license available(4D Web one connection license))
2321
End if
2422

2523

Project/Sources/DatabaseMethods/onHostDatabaseEvent.4dm

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Case of
44
: ($event=On before host database startup)
55
var $webServer : Object
66
$webServer:=WEB Server
7-
cs.Tools.me.init() // Check Licences
7+
If (Is Windows || Is macOS)
8+
cs.Tools.me.init() // Check Licences
9+
End if
810
End case
9-

0 commit comments

Comments
 (0)