﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
108	IE.AU3 _IEAttach windowtitle using not existing registry entry	junkew@…	Gary	"within _IEAttach when searching on windowtitle a registry entry is read which by default does not exist and as such $s_tmp is empty

$s_tmp = RegRead(""HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\"", ""Window Title"")

Whereas actually after - in windows title is Windows Internet Explorer

$s_tmp = $o_window.name is a better match for whats needed

code becomes

{{{
Case ""windowtitle""
;$s_tmp = RegRead(""HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\"", ""Window Title"")
	$s_tmp = $o_window.name
	If StringInStr($o_window.document.title & "" - "" & $s_tmp, $s_string) > 0 Then
		SetError($_IEStatus_Success)
		Return $o_window
	EndIf
}}}
"	Bug	closed	3.2.11.11	Standard UDFs	3.2.10.0	Blocking	Fixed		
