﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
916	Line inversion in INet.au3	jchd <usenet@…>	Gary	"There's a little bug in Inet.au3.

Func _INetExplorerCapable($s_IEString)
	If StringLen($s_IEString) <= 0 Then
		Return ''
		SetError(1)              ; <-- unreachable code
	Else

should be:

Func _INetExplorerCapable($s_IEString)
	If StringLen($s_IEString) <= 0 Then
		SetError(1)
		Return ''
	Else


I've contacted the author who replied he lost interest with AutoIt and now favors C++. Well, noone's perfect ;-)

Please make the correction for next release, it's only a couple of seconds away to get it right.

Thank you."	Bug	closed	3.3.1.0	Standard UDFs	3.3.0.0	None	Fixed		
