summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-09-04 07:39:02 +0000
committeryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-09-04 07:39:02 +0000
commit03e704a0f5f162123003a2cc3f125904c1c3fc53 (patch)
treea830c9ff5a5ba622c7788360f43fe404dc1e8c92
parent44ea26659693b90e6c8573da82812115a52f9f28 (diff)
Cookie::XS renamed to CGI::Cookie::XS
git-svn-id: svn://vndb.org/vndb@107 1fe2e327-d9db-4752-bcf7-ef0cb4a1748b
-rw-r--r--lib/VNDB/Util/Request.pm2
-rw-r--r--util/fcgi.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/VNDB/Util/Request.pm b/lib/VNDB/Util/Request.pm
index fe631484..5cffec99 100644
--- a/lib/VNDB/Util/Request.pm
+++ b/lib/VNDB/Util/Request.pm
@@ -26,7 +26,7 @@ sub ReqSaveUpload {
close $F;
}
sub ReqCookie {
- my $c = Cookie::XS->fetch;
+ my $c = CGI::Cookie::XS->fetch;
return $c && ref($c) eq 'HASH' && $c->{$_[1]} ? $c->{$_[1]}[0] : '';
}
sub ReqMethod {
diff --git a/util/fcgi.pl b/util/fcgi.pl
index a1fb1d92..6a391386 100644
--- a/util/fcgi.pl
+++ b/util/fcgi.pl
@@ -10,7 +10,7 @@ use strict;
use warnings;
use FCGI;
use CGI::Minimal ();
-use Cookie::XS;
+use CGI::Cookie::XS;
use Time::HiRes;
use VNDB;