Opened 16 years ago
Closed 16 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 16 years ago by TicketCleanup
- Severity changed from Blocking to None
comment:2 in reply to: ↑ description Changed 16 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 16 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.
Automatic ticket cleanup.