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
25d1fe7d
Commit
25d1fe7d
authored
7 years ago
by
Côme Chilliet
Browse files
Options
Download
Patches
Plain Diff
fix(management) Fix small errors
parent
c04a6115
dev
6342-update-the-locales-for-1-5
6344-template-issue-when-creating-a-template-with-empty-password-error-message-should-not-be-seen
6365-core-locking-mechanism-is-not-changing-the-mail-ressource-it-does-lock-the-mail-account
6365-core-when-lock-mechanism-is-trigger-the-user-should-not-be-editable-if-not-unlock
6378-orcid-test-method-is-wrong-and-break-orcid-saving
core-php8
master
fusiondirectory-1.5
fusiondirectory-1.4
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/management/class_FilterElement.inc
+1
-1
include/management/class_FilterElement.inc
include/management/columns/class_PropertiesColumn.inc
+1
-1
include/management/columns/class_PropertiesColumn.inc
with
2 additions
and
2 deletions
+2
-2
include/management/class_FilterElement.inc
+
1
−
1
View file @
25d1fe7d
...
@@ -96,7 +96,7 @@ class TabFilterElement extends FilterElement
...
@@ -96,7 +96,7 @@ class TabFilterElement extends FilterElement
$inputs
[
'filter_tab_'
.
$class
]
=
array
(
$inputs
[
'filter_tab_'
.
$class
]
=
array
(
'name'
=>
$tab
[
'infos'
][
'plShortName'
],
'name'
=>
$tab
[
'infos'
][
'plShortName'
],
'desc'
=>
$tab
[
'infos'
][
'plShortName'
]
.
' '
.
$tab
[
'filter'
],
'desc'
=>
$tab
[
'infos'
][
'plShortName'
]
.
' '
.
$tab
[
'filter'
],
'icon'
=>
$tab
[
'infos'
][
'plSmallIcon'
],
'icon'
=>
(
isset
(
$tab
[
'infos'
][
'plSmallIcon'
]
)
?
$tab
[
'infos'
][
'plSmallIcon'
]
:
NULL
)
,
'checked'
=>
$tab
[
'checked'
],
'checked'
=>
$tab
[
'checked'
],
);
);
}
}
...
...
This diff is collapsed.
Click to expand it.
include/management/columns/class_PropertiesColumn.inc
+
1
−
1
View file @
25d1fe7d
...
@@ -57,7 +57,7 @@ class PropertiesColumn extends Column
...
@@ -57,7 +57,7 @@ class PropertiesColumn extends Column
/* Main tab is always there */
/* Main tab is always there */
$pInfos
=
pluglist
::
pluginInfos
(
$infos
[
'mainTab'
]);
$pInfos
=
pluglist
::
pluginInfos
(
$infos
[
'mainTab'
]);
$result
=
'<input type="image" src="'
.
htmlentities
(
$pInfos
[
'plSmallIcon'
],
ENT_COMPAT
,
'UTF-8'
)
.
'" '
.
$result
=
'<input type="image" src="'
.
htmlentities
(
(
isset
(
$pInfos
[
'plSmallIcon'
]
)
?
$pInfos
[
'plSmallIcon'
]
:
$infos
[
'icon'
])
,
ENT_COMPAT
,
'UTF-8'
)
.
'" '
.
'alt="'
.
$pInfos
[
'plShortName'
]
.
'" title="'
.
$pInfos
[
'plShortName'
]
.
'" '
.
'alt="'
.
$pInfos
[
'plShortName'
]
.
'" title="'
.
$pInfos
[
'plShortName'
]
.
'" '
.
'name="listing_edit_tab_'
.
$infos
[
'mainTab'
]
.
'_'
.
$entry
->
row
.
'"/>'
;
'name="listing_edit_tab_'
.
$infos
[
'mainTab'
]
.
'_'
.
$entry
->
row
.
'"/>'
;
if
(
!
empty
(
$entry
))
{
if
(
!
empty
(
$entry
))
{
...
...
This diff is collapsed.
Click to expand it.
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