﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
4019	Little bug in ArrayDisplayInternals	pixelsearch		"Hello jpm
I think there's something missing in ArrayDisplayInternals.au3 (version 3.3.16.1)
{{{
Switch VarGetType($sTemp)
	Case ""Array""
		Local $sSubscript = """"
		For $i = 1 To UBound($sTemp, 0)
			$sSubscript = ""["" & UBound($sTemp, $i) & ""]""
		Next
}}}
It should be :
{{{
			$sSubscript &= ""["" & UBound($sTemp, $i) & ""]""
}}}
Without &= then a 2D array will always be displayed as a 1D array, with only 1 pair of brackets containing... the number of columns.









"	Bug	closed		AutoIt	3.3.16.1	None	Works For Me		
