mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	Fix small bug in reorder routine.
This commit is contained in:
		| @@ -223,7 +223,7 @@ class TransactionController extends Controller | ||||
|         if (count($ids) > 0) { | ||||
|             $order = 0; | ||||
|             foreach ($ids as $id) { | ||||
|                 $journal = $repository->find($id); | ||||
|                 $journal = $repository->find(intval($id)); | ||||
|                 if ($journal && $journal->date->format('Y-m-d') == $date->format('Y-m-d')) { | ||||
|                     $journal->order = $order; | ||||
|                     $order++; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user