Commit ba9dc20a authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(systems): Fix attribute order in phone main tab

Base was not the first attribute, this was inconsistent with other
 object types.

closes #5713
Showing with 1 addition and 1 deletion
+1 -1
...@@ -51,6 +51,7 @@ class phoneGeneric extends ipHostPlugin ...@@ -51,6 +51,7 @@ class phoneGeneric extends ipHostPlugin
'main' => array( 'main' => array(
'name' => _('Properties'), 'name' => _('Properties'),
'attrs' => array( 'attrs' => array(
new BaseSelectorAttribute(get_ou('phoneRDN')),
new HostNameAttribute ( new HostNameAttribute (
_('Name'), _('The name of the phone'), _('Name'), _('The name of the phone'),
'cn', TRUE 'cn', TRUE
...@@ -59,7 +60,6 @@ class phoneGeneric extends ipHostPlugin ...@@ -59,7 +60,6 @@ class phoneGeneric extends ipHostPlugin
_('Description'), _('A short description of the phone'), _('Description'), _('A short description of the phone'),
'description', FALSE 'description', FALSE
), ),
new BaseSelectorAttribute(get_ou('phoneRDN')),
) )
), ),
'phone' => array( 'phone' => array(
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment