Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GLPI
glpi
Commits
94710084
Commit
94710084
authored
Jul 23, 2021
by
Guillaume Bougard
Committed by
Johan Cwiklinski
Jul 23, 2021
Browse files
fix: wrong firmware component date label
parent
631c6862
Changes
1
Show whitespace changes
Inline
Side-by-side
inc/devicefirmware.class.php
View file @
94710084
...
...
@@ -55,7 +55,7 @@ class DeviceFirmware extends CommonDevice {
],
[
'name'
=>
'date'
,
'label'
=>
__
(
'
Installation
date'
),
'label'
=>
__
(
'
Release
date'
),
'type'
=>
'date'
],
[
...
...
@@ -80,7 +80,7 @@ class DeviceFirmware extends CommonDevice {
'id'
=>
'11'
,
'table'
=>
$this
->
getTable
(),
'field'
=>
'date'
,
'name'
=>
__
(
'
Installation
date'
),
'name'
=>
__
(
'
Release
date'
),
'datatype'
=>
'date'
];
...
...
@@ -125,7 +125,7 @@ class DeviceFirmware extends CommonDevice {
Manufacturer
::
getHTMLTableHeader
(
__CLASS__
,
$base
,
$super
,
$father
,
$options
);
$base
->
addHeader
(
'devicefirmware_type'
,
_n
(
'Type'
,
'Types'
,
1
),
$super
,
$father
);
$base
->
addHeader
(
'version'
,
_n
(
'Version'
,
'Versions'
,
1
),
$super
,
$father
);
$base
->
addHeader
(
'date'
,
__
(
'
Installation
date'
),
$super
,
$father
);
$base
->
addHeader
(
'date'
,
__
(
'
Release
date'
),
$super
,
$father
);
}
}
...
...
Write
Preview
Supports
Markdown
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