--- lotgd-1.0.2.orig/configuration.php 2005-04-13 02:11:43.000000000 -0400 +++ lotgd-1.0.2/configuration.php 2005-06-06 23:06:13.000000000 -0400 @@ -58,8 +58,8 @@ $post = httpallpost(); reset($post); $old=$settings; while (list($key,$val)=each($post)){ - if (isset($settings[$key]) && stripslashes($val) != $settings[$key]) { + if ((!isset($settings[$key]) && stripslashes($val)) || (isset($settings[$key]) && (stripslashes($val) != $settings[$key]))) { savesetting($key,stripslashes($val)); output("Setting %s to %s`n", $key, stripslashes($val)); gamelog("`@Changed core setting `^$key`@ from `#{$old[$key]}`@ to `&$val`0","settings");