Skip to content

Commit

Permalink
Merge pull request #96 from ggoffy/master
Browse files Browse the repository at this point in the history
fixed missing default value smarty
  • Loading branch information
ggoffy authored Mar 9, 2023
2 parents b040f33 + 2daff63 commit 0daec7a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
1.3.0 Stable [2023/02/28]
==============================================================
- moved to last stable with smarty 2 (goffy)
- fixed missing default value smarty (goffy)

==============================================================
1.3.0 RC2 [2023/01/05]
Expand Down
12 changes: 6 additions & 6 deletions templates/wgsimpleacc_balances.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<{/if}>
</td>
<td><{$balance.from}></td>
<td><{$balance.to}></td>
<td><{$balance.to|default:''}></td>
<td><{$balance.amountstart}></td>
<td><{$balance.amountend}></td>
<td><{$balance.datecreated}></td>
Expand Down Expand Up @@ -77,13 +77,13 @@
<{foreach item=balance from=$balances}>
<tr>
<td><{$balance.from}></td>
<td><{$balance.to}></td>
<td><{$balance.asset}></td>
<td><{$balance.curid}></td>
<td><{$balance.to|default:''}></td>
<td><{$balance.asset|default:''}></td>
<td><{$balance.curid|default:''}></td>
<td><{$balance.amountstart}></td>
<td><{$balance.amountend}></td>
<td><{$balance.datecreated}></td>
<td><{$balance.submitter}></td>
<td><{$balance.datecreated|default:''}></td>
<td><{$balance.submitter|default:''}></td>
</tr>
<{/foreach}>
<tr>
Expand Down

0 comments on commit 0daec7a

Please sign in to comment.