Modify

Opened 15 years ago

Closed 15 years ago

#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 Changed 15 years ago by TicketCleanup

  • Severity changed from Blocking to None

Automatic ticket cleanup.

comment:2 in reply to: ↑ description Changed 15 years ago by Valik

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 Changed 15 years ago by Gary

  • Milestone set to 3.3.1.0
  • Resolution set to Fixed
  • Status changed from new to closed

Fixed in version: 3.3.1.0

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Modify Ticket

Action
as closed The owner will remain Gary.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.