changeset 642:9fbbbb8628ff

Fix comparision check. :S
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 03 Nov 2014 02:00:28 +0200
parents 1a123c6c2241
children d32b5f601670
files msitegen.inc.php
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/msitegen.inc.php	Mon Nov 03 01:58:41 2014 +0200
+++ b/msitegen.inc.php	Mon Nov 03 02:00:28 2014 +0200
@@ -299,7 +299,7 @@
   foreach ($data as $key => $value)
   {
     $str .= stGetOptionListItem($key,
-      ($key === $active),
+      ($key == $active),
       is_array($value) ? $value[0] : $value);
   }