Modify

#916 closed Bug (Fixed)

Line inversion in INet.au3

Reported by: jchd <usenet@…> Owned by: Gary
Milestone: 3.3.1.0 Component: Standard UDFs
Version: 3.3.0.0 Severity: None
Keywords: Cc:

Description

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.

Attachments (0)

Change History (3)

comment:1 by TicketCleanup, on Apr 19, 2009 at 5:00:02 PM

Severity: BlockingNone

Automatic ticket cleanup.

in reply to:  description comment:2 by Valik, on Apr 19, 2009 at 5:30:02 PM

Replying to jchd <usenet@…>:

Please make the correction for next release, it's only a couple of seconds away to get it right.

You really need to read WikiStart. YOU are not the one who determines how we spend our time on issues. You have rudely and incorrectly set the blocking flag AND requested this be done for your convenience. Were it up to me I wouldn't resolve this for awhile simply because I'm an asshole who doesn't like people like you trying to tell me how to work on things.

comment:3 by Gary, on Apr 19, 2009 at 6:12:06 PM

Milestone: 3.3.1.0
Resolution: Fixed
Status: newclosed

Fixed in version: 3.3.1.0

Modify Ticket

Action
as closed The owner will remain Gary.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.