aboutsummaryrefslogtreecommitdiff
path: root/charset.rb
diff options
context:
space:
mode:
authorBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-10-26 15:56:00 +0100
committerBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-10-26 15:56:00 +0100
commita2fe07433fec6c9f52f1ea36d7ef53bcd7c095a6 (patch)
tree82b528d3ec6331d4424b3b21f91ca25b3cc3cfb5 /charset.rb
parent985631b3cbe7a34854f3888a453cf6e9f3d6199e (diff)
fix encoding issue when creating poll with strange characters
Diffstat (limited to 'charset.rb')
-rw-r--r--charset.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/charset.rb b/charset.rb
index 07aedaf..5535844 100644
--- a/charset.rb
+++ b/charset.rb
@@ -4,10 +4,10 @@
# see License #
################################
-$utfcookie = CGI::Cookie.new("utf", "true")
-$utfcookie.path = "/"
+utfcookie = CGI::Cookie.new("utf", "true")
+utfcookie.path = "/"
if ($cgi.include?("utf") || $cgi.cookies["utf"][0]) && !$cgi.include?("ascii")
- $utfcookie.expires = Time.now+1*60*60*24*365
+ utfcookie.expires = Time.now+1*60*60*24*365
UTFASCII = "<a href='?ascii' style='text-decoration:none'>Change Charset to plain ASCII</a>"
YES = CGI.escapeHTML('✔')
@@ -23,7 +23,7 @@ if ($cgi.include?("utf") || $cgi.cookies["utf"][0]) && !$cgi.include?("ascii")
EDIT = CGI.escapeHTML("✍")
DELETE = CGI.escapeHTML("⌧")
else
- $utfcookie.expires = Time.now-1*60*60*24*36
+ utfcookie.expires = Time.now-1*60*60*24*36
UTFASCII = "<a href='?utf' style='text-decoration:none'>If you see all these characters: #{CGI.escapeHTML('✔✘?–↞←→↠✍⌧')} you can safely change the charset to UTF-8</a>"
YES = CGI.escapeHTML('OK')
@@ -39,4 +39,4 @@ else
EDIT = CGI.escapeHTML("edit")
DELETE = CGI.escapeHTML("delete")
end
-
+$header["cookie"] = utfcookie