mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 07:14:35 +02:00
Widget\Filter*: fix parse error, replace minus
This commit is contained in:
parent
2a27b6ce25
commit
d55c2a4c87
@ -95,7 +95,7 @@ class FilterEditor extends AbstractWidget
|
|||||||
$removeUrl->setParam('removeFilter', $idx);
|
$removeUrl->setParam('removeFilter', $idx);
|
||||||
$removeLink = ' <a href="' . $removeUrl . '" title="'
|
$removeLink = ' <a href="' . $removeUrl . '" title="'
|
||||||
. $view->escape(t('Click to remove this part of your filter'))
|
. $view->escape(t('Click to remove this part of your filter'))
|
||||||
. '">' . $view->icon('minus . '</a>';
|
. '">' . $view->icon('cancel') . '</a>';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// Temporarilly removed, not implemented yet
|
// Temporarilly removed, not implemented yet
|
||||||
|
@ -98,7 +98,7 @@ class FilterWidget extends AbstractWidget
|
|||||||
. '" title="'
|
. '" title="'
|
||||||
. t('Remove this filter')
|
. t('Remove this filter')
|
||||||
. '">'
|
. '">'
|
||||||
. $view->icon('minus')
|
. $view->icon('cancel')
|
||||||
. '</a>';
|
. '</a>';
|
||||||
}
|
}
|
||||||
$filter = $this->filter->isEmpty() ? '' : ': ' . $this->filter;
|
$filter = $this->filter->isEmpty() ? '' : ': ' . $this->filter;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user