mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Commit changes.
This commit is contained in:
commit
c29fb13941
@ -523,7 +523,7 @@ class RuleController extends Controller
|
|||||||
$actions[] = view(
|
$actions[] = view(
|
||||||
'rules.partials.action',
|
'rules.partials.action',
|
||||||
[
|
[
|
||||||
'oldTrigger' => $entry->action_type,
|
'oldAction' => $entry->action_type,
|
||||||
'oldValue' => $entry->action_value,
|
'oldValue' => $entry->action_value,
|
||||||
'oldChecked' => $entry->stop_processing,
|
'oldChecked' => $entry->stop_processing,
|
||||||
'count' => $count,
|
'count' => $count,
|
||||||
|
@ -130,7 +130,7 @@ class Amount
|
|||||||
$result = $format->symbol . $space . $formatted;
|
$result = $format->symbol . $space . $formatted;
|
||||||
|
|
||||||
if (!$precedes) {
|
if (!$precedes) {
|
||||||
$result = $space . $formatted . $format->symbol;
|
$result = $formatted . $space . $format->symbol;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($coloured === true) {
|
if ($coloured === true) {
|
||||||
|
@ -236,7 +236,7 @@ class Search implements SearchInterface
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
foreach ($needle as $what) {
|
foreach ($needle as $what) {
|
||||||
if (strpos($haystack, $what) !== false) {
|
if (stripos($haystack, $what) !== false) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user