We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49526c0 commit a1a9ce6Copy full SHA for a1a9ce6
Changes
@@ -25,3 +25,6 @@ Revision history for Perl extension Apache::Session::MongoDB.
25
26
0.17 Wed May 18 22:01:50 2016
27
- Return undef if no session found
28
+
29
+0.18 Thu Jun 22 12:00:00 2017
30
+ - Substitute $ and . characters in keys before stroring session contents
lib/Apache/Session/MongoDB.pm
@@ -4,7 +4,7 @@ use 5.010;
4
use strict;
5
use AutoLoader 'AUTOLOAD';
6
7
-our $VERSION = '0.17';
+our $VERSION = '0.18';
8
our @ISA = qw(Apache::Session);
9
10
use Apache::Session;
lib/Apache/Session/Store/MongoDB.pm
@@ -3,7 +3,7 @@ package Apache::Session::Store::MongoDB;
3
use 5.010;
use MongoDB;
0 commit comments