Skip to content

Commit 36d41a9

Browse files
committed
1.1.1
1 parent 7cfbfad commit 36d41a9

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

database_integrity.php

+39
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,42 @@
1818
"Default" => ""
1919
)
2020
);
21+
22+
$HOOKS = array();
23+
$HOOKS["1.1.1"] = array(
24+
array(
25+
"hook_type" => "template",
26+
"action_location" => "edit_template_tab2",
27+
"function_name" => "",
28+
"hook_function" => "swift_display_extra_fields_tab2",
29+
"priority" => "50"
30+
),
31+
array(
32+
"hook_type" => "code",
33+
"action_location" => "end",
34+
"function_name" => "ft_create_blank_email_template",
35+
"hook_function" => "swift_map_email_template_field",
36+
"priority" => "50"
37+
),
38+
array(
39+
"hook_type" => "code",
40+
"action_location" => "end",
41+
"function_name" => "ft_delete_email_template",
42+
"hook_function" => "swift_delete_email_template_field",
43+
"priority" => "50"
44+
),
45+
array(
46+
"hook_type" => "code",
47+
"action_location" => "end",
48+
"function_name" => "ft_update_email_template",
49+
"hook_function" => "swift_update_email_template_append_extra_fields",
50+
"priority" => "50"
51+
),
52+
array(
53+
"hook_type" => "code",
54+
"action_location" => "end",
55+
"function_name" => "ft_get_email_template",
56+
"hook_function" => "swift_get_email_template_append_extra_fields",
57+
"priority" => "50"
58+
)
59+
);

module.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
$MODULE["author"] = "Encore Web Studios";
88
$MODULE["author_email"] = "[email protected]";
99
$MODULE["author_link"] = "http://modules.formtools.org";
10-
$MODULE["version"] = "1.1.0";
11-
$MODULE["date"] = "2011-06-18";
10+
$MODULE["version"] = "1.1.1";
11+
$MODULE["date"] = "2011-10-19";
1212
$MODULE["origin_language"] = "en_us";
1313

1414
// define the module navigation - the keys are keys defined in the language file. This lets

0 commit comments

Comments
 (0)