diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-10-24 22:59:15 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-10-24 22:59:15 +0000 |
commit | 230b369ae0e8f0650118ac91750d7d2d94b381c7 (patch) | |
tree | 80a82939607e09b872b912892a5145c6b9bab696 /UI/am-warehouse-form.html | |
parent | 8f5b8bd131d1a2cae3e2455b4a32d09d21999c30 (diff) |
Correct the row count variable name
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1816 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/am-warehouse-form.html')
-rw-r--r-- | UI/am-warehouse-form.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UI/am-warehouse-form.html b/UI/am-warehouse-form.html index 1ed6975f..da4e4338 100644 --- a/UI/am-warehouse-form.html +++ b/UI/am-warehouse-form.html @@ -11,7 +11,7 @@ <tr> <th align="right"><?lsmb text('Description') ?></th> <?lsmb IF row_count > 1 ?> - <td><?lsmb PROCESS textarea element_data={name => 'description', cols => 60, rows => rows, text => form.description} ?></td> + <td><?lsmb PROCESS textarea element_data={name => 'description', cols => 60, rows => row_count, text => form.description} ?></td> <?lsmb ELSE ?> <td><?lsmb PROCESS input element_data={name => 'description', size => 60, value => form.description} ?></td> <?lsmb END ?> |