Icinga icons hotfix
This commit is contained in:
parent
1ef5d5adaf
commit
e05250db4e
|
@ -116,7 +116,7 @@ class ReorderForm extends Form
|
|||
'escape' => false,
|
||||
'value' => 'btn_' . $this->getBackendName() . '_reorder_up',
|
||||
'name' => 'btn_' . $this->getBackendName() . '_reorder_up',
|
||||
'label' => '<img src="/icingaweb/img/icons/up.png" title="Move up in authentication order" />',
|
||||
'label' => $this->getView()->img('img/icons/up.png', array('title' => 'Move up in authentication order')),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
@ -138,7 +138,7 @@ class ReorderForm extends Form
|
|||
'escape' => false,
|
||||
'value' => 'btn_' . $this->getBackendName() . '_reorder_down',
|
||||
'name' => 'btn_' . $this->getBackendName() . '_reorder_down',
|
||||
'label' => '<img src="/icingaweb/img/icons/down.png" title="Move down in authentication order" />',
|
||||
'label' => $this->getView()->img('img/icons/down.png', array('title' => 'Move down in authentication order')),
|
||||
|
||||
)
|
||||
);
|
||||
|
|
|
@ -397,7 +397,8 @@ class GeneralForm extends Form
|
|||
'type' => 'submit',
|
||||
'escape' => false,
|
||||
'value' => '1',
|
||||
'label' => '<img src="/icingaweb/img/icons/save.png" title="Save Changes" /> Save Changes'
|
||||
'label' => $this->getView()->img('img/icons/save.png', array('title' => 'Save Changes'))
|
||||
. ' Save changes',
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue