Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LemonLDAP NG
lemonldap-ng
Commits
02f8c410
Commit
02f8c410
authored
Nov 29, 2018
by
Yadd
Browse files
Fix little warnings (
#1559
)
parent
42bf43e0
Pipeline
#3554
passed with stages
in 7 minutes and 8 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
Try again
or
attach a new 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