diff options
author | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-02 14:19:37 +0000 |
---|---|---|
committer | shugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-02 14:19:37 +0000 |
commit | 62e6367984afc3e0dfc3c632b1349a10d1565bb8 (patch) | |
tree | 14e706d24cdd14874478bdb7d5661ddeae9e9e2f /lib | |
parent | fb52cdd00c4160f9582ea7865e5fe2a7f757f53d (diff) | |
download | ruby-62e6367984afc3e0dfc3c632b1349a10d1565bb8.tar.gz ruby-62e6367984afc3e0dfc3c632b1349a10d1565bb8.tar.xz ruby-62e6367984afc3e0dfc3c632b1349a10d1565bb8.zip |
* lib/cgi/session.rb: don't use module_function for Class.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1490 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cgi/session.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/cgi/session.rb b/lib/cgi/session.rb index 1a3379b88..9187dbf82 100644 --- a/lib/cgi/session.rb +++ b/lib/cgi/session.rb @@ -99,7 +99,6 @@ class CGI def check_id(id) /[^0-9a-zA-Z]/ =~ id.to_s ? false : true end - module_function :check_id def initialize(session, option={}) dir = option['tmpdir'] || ENV['TMP'] || '/tmp' |