summaryrefslogtreecommitdiff
path: root/bin/mozilla/am.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/mozilla/am.pl')
-rwxr-xr-xbin/mozilla/am.pl6
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 &nbsp to  
@@ -1691,7 +1691,7 @@ $form->{body}
sub save_template {
- AM->save_template(\%$form);
+ AM->save_template(\%myconfig, \%$form);
$form->redirect($locale->text('Template saved!'));
}