﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
4096	0/false is evaluated as empty string when single = is used	xsxizas@…		"{{{#!autoit
; Example #1
Local $iDateCalc= 0
If $iDateCalc == """" Then
MsgBox(0,"""",""EMPTY String"")
EndIf
If $iDateCalc = """" Then
MsgBox(0,"""",$iDateCalc & "" is evaluated as EMPTY String with single '=' "")
EndIf

; Example 2
Local $iDateCalc= False
If $iDateCalc == """" Then
MsgBox(0,"""",""EMPTY String"")
EndIf
If $iDateCalc = """" Then
MsgBox(0,"""",$iDateCalc & "" is evaluated as EMPTY String with single '=' "")
EndIf
}}}"	Bug	new		AutoIt	3.3.18.0	None			
