Commit changes.

This commit is contained in:
James Cole 2017-09-03 10:08:56 +02:00
commit c29fb13941
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
3 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -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) {

View File

@ -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;
} }
} }