Browse Source

if boolean vars are quoted they become strings

jmunro 23 years ago
parent
commit
45c78218b4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/conf.pl

+ 1 - 1
config/conf.pl

@@ -2497,7 +2497,7 @@ sub save_data {
 	# string
         print CF "\$prefs_val_field = '$prefs_val_field';\n";
 	# boolean
-	print CF "\$no_list_for_subscribe = '$no_list_for_subscribe';\n";
+	print CF "\$no_list_for_subscribe = $no_list_for_subscribe;\n";
         print CF "\n";
 
         print CF "/**\n";