From ef3182f91f15bf9620fb0bd7f0cf837eeca78540 Mon Sep 17 00:00:00 2001 From: jsmorley Date: Sun, 18 Oct 2009 15:08:07 +0000 Subject: [PATCH] EnigmaConfigure: Fixed an issue with case sensitivity In a couple of string comparisons I was using IF string1 = string2, which is case insensitive, so you couldn't change just the case of a value. Changed to IF string1 == string2 to make the comparison case sensitive.