From 027af11144abffdbadc2219147e0bc13ebb7ab0c Mon Sep 17 00:00:00 2001 From: Benjamin Kellermann Date: Tue, 19 Jan 2010 11:32:46 +0100 Subject: constant -> global variable --- customize.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'customize.rb') diff --git a/customize.rb b/customize.rb index 3f9bb6e..97e6a42 100755 --- a/customize.rb +++ b/customize.rb @@ -58,11 +58,11 @@ end a = [["Use special characters (#{UTFCHARS})","utf", "Use this option if you see the characters in the parenthesis."], ["Use only normal strings","ascii","Use this option if you have problems with some characters."]] -$d.html.add_cookie("ascii","true","/",Time.now + (1*60*60*24*365 * (USEUTF ? -1 : 1 ))) +$d.html.add_cookie("ascii","true","/",Time.now + (1*60*60*24*365 * ($USEUTF ? -1 : 1 ))) $d << <

Charset

-#{choosetable("Charset settings",a,USEUTF ? "utf" : "ascii")} +#{choosetable("Charset settings",a,$USEUTF ? "utf" : "ascii")} CHARSET -- cgit v1.2.3