Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
fusiondirectory
fusiondirectory
Commits
e7456f50
Verified
Commit
e7456f50
authored
1 month ago
by
dockx thibault
1
Browse files
Options
Download
Patches
Plain Diff
(html) - html folder php82
Adapt html classes to php82
parent
4b2a0050
core-php8
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
html/autocomplete.php
+3
-3
html/autocomplete.php
html/index.php
+6
-13
html/index.php
html/setup.php
+1
-1
html/setup.php
with
10 additions
and
17 deletions
+10
-17
html/autocomplete.php
+
3
−
3
View file @
e7456f50
...
...
@@ -42,7 +42,7 @@ if (isset($_GET['type']) && $_GET['type'] == "base") {
if
(
session
::
is_set
(
"pathMapping"
)
&&
count
(
$_POST
)
==
1
)
{
$res
=
""
;
$pathMapping
=
session
::
get
(
"pathMapping"
);
$search
=
preg_replace
(
'/"/'
,
'"'
,
current
(
$_POST
));
$search
=
preg_replace
(
'/"/'
,
'"'
,
(
string
)
current
(
$_POST
));
$config
=
session
::
get
(
'config'
);
$departmentInfo
=
$config
->
getDepartmentInfo
();
...
...
@@ -50,11 +50,11 @@ if (isset($_GET['type']) && $_GET['type'] == "base") {
if
(
!
isset
(
$pathMapping
[
$dn
]))
{
continue
;
}
if
(
mb_stristr
(
$info
[
'name'
],
$search
)
!==
FALSE
)
{
if
(
mb_stristr
(
(
string
)
$info
[
'name'
],
$search
)
!==
FALSE
)
{
$res
.
=
"<li>"
.
mark
(
$search
,
$pathMapping
[
$dn
])
.
(
$info
[
'description'
]
==
''
?
""
:
"<span class='informal'> ["
.
mark
(
$search
,
$info
[
'description'
])
.
"]</span>"
)
.
"</li>"
;
continue
;
}
if
(
mb_stristr
(
$info
[
'description'
],
$search
)
!==
FALSE
)
{
if
(
mb_stristr
(
(
string
)
$info
[
'description'
],
$search
)
!==
FALSE
)
{
$res
.
=
"<li>"
.
mark
(
$search
,
$pathMapping
[
$dn
])
.
(
$info
[
'description'
]
==
''
?
""
:
"<span class='informal'> ["
.
mark
(
$search
,
$info
[
'description'
])
.
"]</span>"
)
.
"</li>"
;
continue
;
}
...
...
This diff is collapsed.
Click to expand it.
html/index.php
+
6
−
13
View file @
e7456f50
...
...
@@ -146,19 +146,12 @@ if (($config->get_cfg_value('forcessl') == 'TRUE') && ($ssl != '')) {
}
if
(
isset
(
$_REQUEST
[
'message'
]))
{
switch
(
$_REQUEST
[
'message'
])
{
case
'expired'
:
$message
=
_
(
'Your FusionDirectory session has expired!'
);
break
;
case
'invalidparameter'
:
$message
=
sprintf
(
_
(
'Invalid plugin parameter "%s"!'
),
$_REQUEST
[
'plug'
]);
break
;
case
'nosession'
:
$message
=
_
(
'No session found!'
);
break
;
default
:
$message
=
$_REQUEST
[
'message'
];
}
$message
=
match
(
$_REQUEST
[
'message'
])
{
'expired'
=>
_
(
'Your FusionDirectory session has expired!'
),
'invalidparameter'
=>
sprintf
(
_
(
'Invalid plugin parameter "%s"!'
),
$_REQUEST
[
'plug'
]),
'nosession'
=>
_
(
'No session found!'
),
default
=>
$_REQUEST
[
'message'
],
};
}
LoginMethod
::
loginProcess
();
This diff is collapsed.
Click to expand it.
html/setup.php
+
1
−
1
View file @
e7456f50
...
...
@@ -82,7 +82,7 @@ if (isset($_POST['lang_selected']) && $_POST['lang_selected'] != '') {
$lang
=
$_POST
[
'lang_selected'
];
/* Append .UTF-8 to language string if necessary */
if
(
!
preg_match
(
'/utf(-)?8$/i'
,
$lang
))
{
if
(
!
preg_match
(
'/utf(-)?8$/i'
,
(
string
)
$lang
))
{
$lang
.
=
'.UTF-8'
;
}
}
elseif
(
session
::
is_set
(
'lang'
))
{
...
...
This diff is collapsed.
Click to expand it.
dockx thibault
@tdockx
mentioned in commit
a567089e
·
1 month ago
mentioned in commit
a567089e
mentioned in commit a567089e8ed82990f868e85f2db6269e7a87dc44
Toggle commit list
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!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets