diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-02 04:36:31 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-02 04:36:31 +0000 |
commit | 6c2a94cb4ec73ecbd148b74cbd6c82fb2e171715 (patch) | |
tree | b47d57b41c61f651ef8a803a1c00d9835b56cd91 /bin | |
parent | 4410a3d62f37dd01feba6aaaa9a1090248aa0d6a (diff) |
Adding file location checks to the template editor
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@175 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/mozilla/am.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/mozilla/am.pl b/bin/mozilla/am.pl index 5a9967e9..9be1c020 100755 --- a/bin/mozilla/am.pl +++ b/bin/mozilla/am.pl @@ -1598,7 +1598,7 @@ sub display_form { $form->error("$!: $form->{file}") unless -f $form->{file}; - AM->load_template(\%$form); + AM->load_template(\%myconfig, \%$form); $form->{title} = $form->{file}; @@ -1643,7 +1643,7 @@ $form->{body} sub edit_template { - AM->load_template(\%$form); + AM->load_template(\%myconfig, \%$form); $form->{title} = $locale->text('Edit Template'); # convert   to &nbsp; @@ -1691,7 +1691,7 @@ $form->{body} sub save_template { - AM->save_template(\%$form); + AM->save_template(\%myconfig, \%$form); $form->redirect($locale->text('Template saved!')); } |