summaryrefslogtreecommitdiff
path: root/modules/trigger
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-02 02:38:53 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-02 02:38:53 +0000
commit453569e72190e3c9a510fc00fa215ca88110d51a (patch)
tree0328539cb8d1d62a0c9fb97b340381e29b4a9271 /modules/trigger
parentb5674375009f9b9ca5c1e5313116af0f97a63b16 (diff)
downloadbrdo-453569e72190e3c9a510fc00fa215ca88110d51a.tar.gz
brdo-453569e72190e3c9a510fc00fa215ca88110d51a.tar.bz2
#539442 by deekayen: Re-order functions in trigger.install so schema comes first.
Diffstat (limited to 'modules/trigger')
-rw-r--r--modules/trigger/trigger.install16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/trigger/trigger.install b/modules/trigger/trigger.install
index 95fb4fb2e..d17432615 100644
--- a/modules/trigger/trigger.install
+++ b/modules/trigger/trigger.install
@@ -7,14 +7,6 @@
*/
/**
- * Implement hook_install().
- */
-function trigger_install() {
- // Do initial synchronization of actions in code and the database.
- actions_synchronize();
-}
-
-/**
* Implement hook_schema().
*/
function trigger_schema() {
@@ -51,6 +43,14 @@ function trigger_schema() {
}
/**
+ * Implement hook_install().
+ */
+function trigger_install() {
+ // Do initial synchronization of actions in code and the database.
+ actions_synchronize();
+}
+
+/**
* Adds operation names to the hook names and drops the "op" field.
*/
function trigger_update_7000() {