mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	Commit changes.
This commit is contained in:
		| @@ -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; | ||||
|             } | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user