Modify ↓
Opened 5 years ago
Closed 5 years ago
#3737 closed Bug (Fixed)
_ArrayUnique fails on single element array when base set to 1
Reported by: | Melba23 | Owned by: | Melba23 |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | 3.3.14.5 | Severity: | None |
Keywords: | Cc: |
Description
When using the $iBase feature to ignore the first element, the function hard fails on a single element array.
Global $aArray[1] = ["test"] ; add a single row to the array _ArrayUnique($aArray, 0, 1) ; Arguments: $iColumn = 0, $iBase = 1 (1-based)
M23
Attachments (0)
Change History (1)
comment:1 Changed 5 years ago by Melba23
- Resolution set to Fixed
- Status changed from new to closed
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.
Note: See
TracTickets for help on using
tickets.
Fixed at revision 12230.
M23