diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-21 20:21:11 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-21 20:21:11 +0000 |
commit | ec75f85155808bb60f5e1c593754471ad2a398f1 (patch) | |
tree | 9dab2571b3c9afccbfab41b29caba42c25a372c5 /UI | |
parent | eb497f995016bf851d68ee831cd15228ba15c4c4 (diff) |
Correcting issues retrieving contact info which contain '#' in description or contact info.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2297 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI')
-rw-r--r-- | UI/Contact/contact.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/UI/Contact/contact.html b/UI/Contact/contact.html index 08e4ce5b..2d15adc1 100644 --- a/UI/Contact/contact.html +++ b/UI/Contact/contact.html @@ -594,17 +594,19 @@ problems with multi-word single-quoted constructs in PI tags. -CT --> <td class="contact_class"><?lsmb ct.class ?></td> <td class="contact"><?lsmb ct.contact ?></td> <td class="contact_actions"> - <a href="<?lsmb script ?>?entity_id=<?lsmb entity_id - ?>&contact=<?lsmb ct.contact - ?>&contact_class=<?lsmb ct.class_id - ?>&description=<?lsmb ct.description + <a href="<?lsmb tt_url(script) + ?>?entity_id=<?lsmb tt_url(entity_id) + ?>&contact=<?lsmb tt_url(ct.contact) + ?>&contact_class=<?lsmb tt_url(ct.class_id) + ?>&description=<?lsmb tt_url(ct.description) ?>&action=edit&credit_id=<?lsmb - credit_id ?>" + tt_url(credit_id) ?>" >[<?lsmb text('Edit'); ?>]</a> - <a href="<?lsmb script ?>?entity_id=<?lsmb entity_id - ?>&contact_id=<?lsmb ct.id + <a href="<?lsmb tt_url(script) + ?>?entity_id=<?lsmb tt_url(entity_id) + ?>&contact_id=<?lsmb tt_url(ct.id) ?>&action=delete_contact&credit_id=<?lsmb - credit_id ?>" + tt_url(credit_id) ?>" >[<?lsmb text('Delete'); ?>]</a> </td> </tr> |