﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
600	Array.au3 in Beta 3.2.13.8 the functions don't work with 2D Array	TalivanIBM	Gary	"i have proved the Beta 3.2.13.8 and, for example, the function _ArraySearch don't work with 2D Array, in Array.au3 the second line of this function is 
{{{
If UBound($avArray, 0) <> 1 Then Return SetError(2, 0, 0)
}}}
and always if the $avArray is 2D returns error 2 because UBound returns 2 and it's diferent of 1

if we change for
{{{
If UBound($avArray, 0) > 2 And UBound($avArray, 0) < 1 Then Return SetError(2, 0, 0)
}}}

the function accepts 2D Array, the first line of code is in all of the functions in Array.au3.
"	Bug	closed	3.2.13.9	AutoIt	3.2.13.8	None	Fixed		
