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(
|
||||
'rules.partials.action',
|
||||
[
|
||||
'oldTrigger' => $entry->action_type,
|
||||
'oldAction' => $entry->action_type,
|
||||
'oldValue' => $entry->action_value,
|
||||
'oldChecked' => $entry->stop_processing,
|
||||
'count' => $count,
|
||||
|
@ -130,7 +130,7 @@ class Amount
|
||||
$result = $format->symbol . $space . $formatted;
|
||||
|
||||
if (!$precedes) {
|
||||
$result = $space . $formatted . $format->symbol;
|
||||
$result = $formatted . $space . $format->symbol;
|
||||
}
|
||||
|
||||
if ($coloured === true) {
|
||||
|
@ -236,7 +236,7 @@ class Search implements SearchInterface
|
||||
return false;
|
||||
}
|
||||
foreach ($needle as $what) {
|
||||
if (strpos($haystack, $what) !== false) {
|
||||
if (stripos($haystack, $what) !== false) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user