Display bug in recurring transactions.

This commit is contained in:
James Cole 2014-11-19 21:18:16 +01:00
parent d7a4bf22c6
commit 2f8e3a0707
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
<a href="{{route('recurring.show',$entry->id)}}" title="{{{$entry->name}}}">{{{$entry->name}}}</a> <a href="{{route('recurring.show',$entry->id)}}" title="{{{$entry->name}}}">{{{$entry->name}}}</a>
</td> </td>
<td> <td>
@foreach(explode(' ',$entry->match) as $match) @foreach(explode(',',$entry->match) as $match)
<span class="label label-info">{{{$match}}}</span> <span class="label label-info">{{{$match}}}</span>
@endforeach @endforeach
</td> </td>

View File

@ -38,7 +38,7 @@
<tr> <tr>
<td colspan="2"> <td colspan="2">
Matching on Matching on
@foreach(explode(' ',$recurring->match) as $word) @foreach(explode(',',$recurring->match) as $word)
<span class="label label-info">{{{$word}}}</span> <span class="label label-info">{{{$word}}}</span>
@endforeach @endforeach
between {{mf($recurring->amount_min)}} and {{mf($recurring->amount_max)}}. between {{mf($recurring->amount_min)}} and {{mf($recurring->amount_max)}}.