Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
lemonldap-ng
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xavier Bachelot
lemonldap-ng
Commits
02f8c410
Commit
02f8c410
authored
Nov 29, 2018
by
Yadd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix little warnings (#1559)
parent
42bf43e0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
lemonldap-ng-common/lib/Lemonldap/NG/Common/Session.pm
lemonldap-ng-common/lib/Lemonldap/NG/Common/Session.pm
+4
-1
lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Jail.pm
lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Jail.pm
+3
-1
lemonldap-ng-portal/t/20-Auth-and-password-DBI-dynamic-hash.t
...nldap-ng-portal/t/20-Auth-and-password-DBI-dynamic-hash.t
+1
-1
No files found.
lemonldap-ng-common/lib/Lemonldap/NG/Common/Session.pm
View file @
02f8c410
...
...
@@ -13,7 +13,10 @@ use Lemonldap::NG::Common::Apache::Session;
# Workaround for another ModPerl/Mouse issue...
BEGIN
{
require
Mouse
;
my
$v
=
sprintf
(
"
%d.%03d%03d
",
(
$
Mouse::
VERSION
=~
/(\d+)/g
)
);
my
$v
=
$
Mouse::
VERSION
?
sprintf
(
"
%d.%03d%03d
",
(
$
Mouse::
VERSION
=~
/(\d+)/g
)
)
:
0
;
if
(
$v
<
2.005001
and
$
Lemonldap::NG::Handler::Apache2::Main::
VERSION
)
{
require
Moose
;
Moose
->
import
();
...
...
lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Jail.pm
View file @
02f8c410
...
...
@@ -8,7 +8,9 @@ use Lemonldap::NG::Common::Safelib; #link protected safe Safe object
# Workaround for another ModPerl/Mouse issue...
BEGIN
{
require
Mouse
;
my
$v
=
sprintf
(
"
%d.%03d%03d
",
(
$
Mouse::
VERSION
=~
/(\d+)/g
)
);
my
$v
=
$
Mouse::
VERSION
?
sprintf
(
"
%d.%03d%03d
",
(
$
Mouse::
VERSION
=~
/(\d+)/g
)
)
:
0
;
if
(
$v
<
2.005001
and
$
Lemonldap::NG::Handler::Apache2::Main::
VERSION
)
{
require
Moose
;
Moose
->
import
();
...
...
lemonldap-ng-portal/t/20-Auth-and-password-DBI-dynamic-hash.t
View file @
02f8c410
...
...
@@ -190,7 +190,7 @@ SKIP: {
'
Authentication against newly-modified password
'
);
expectOK
(
$res
);
my
$id
=
expectCookie
(
$res
);
$id
=
expectCookie
(
$res
);
# Verify that password is hashed with correct scheme (dbiDynamicHashNewPasswordScheme)
my
$sth
=
$dbh
->
prepare
("
SELECT password FROM users WHERE user='jsmith';
");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment