hmm yeps i forgot to add '-nocase' in that 'string match'
open in an editor your OnSitePre.itcl
look for line:
if { [string match [lindex [split $tmploop :] 0] [lindex $args 0]] == 1 }
and replace by:
if { [string match -nocase [lindex [split $tmploop :] 0] [lindex $args 0]] == 1 }
normally it should fix the problem
it will be fixed in next rls. thx for the report
have fun
bounty
|