summaryrefslogtreecommitdiff
path: root/modules/trigger
diff options
context:
space:
mode:
Diffstat (limited to 'modules/trigger')
-rw-r--r--modules/trigger/trigger.admin.inc2
-rw-r--r--modules/trigger/trigger.install42
2 files changed, 22 insertions, 22 deletions
diff --git a/modules/trigger/trigger.admin.inc b/modules/trigger/trigger.admin.inc
index 0573ac8af..624982208 100644
--- a/modules/trigger/trigger.admin.inc
+++ b/modules/trigger/trigger.admin.inc
@@ -140,7 +140,7 @@ function trigger_assign_form($form_state, $hook, $op, $description) {
$form[$op] = array(
'#type' => 'fieldset',
- '#title' => t('Trigger: '). $description,
+ '#title' => t('Trigger: ') . $description,
'#theme' => 'trigger_display'
);
// Retrieve actions that are already assigned to this hook-op combination.
diff --git a/modules/trigger/trigger.install b/modules/trigger/trigger.install
index bca11130c..981ad5dbf 100644
--- a/modules/trigger/trigger.install
+++ b/modules/trigger/trigger.install
@@ -27,27 +27,27 @@ function trigger_schema() {
$schema['trigger_assignments'] = array(
'description' => t('Maps trigger to hook and operation assignments from trigger.module.'),
'fields' => array(
- 'hook' => array(
- 'type' => 'varchar',
- 'length' => 32,
- 'not null' => TRUE,
- 'default' => '',
- 'description' => t('Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.'),
- ),
- 'op' => array(
- 'type' => 'varchar',
- 'length' => 32,
- 'not null' => TRUE,
- 'default' => '',
- 'description' => t('Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.'),
- ),
- 'aid' => array(
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => TRUE,
- 'default' => '',
- 'description' => t("Primary Key: Action's {actions}.aid."),
- ),
+ 'hook' => array(
+ 'type' => 'varchar',
+ 'length' => 32,
+ 'not null' => TRUE,
+ 'default' => '',
+ 'description' => t('Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.'),
+ ),
+ 'op' => array(
+ 'type' => 'varchar',
+ 'length' => 32,
+ 'not null' => TRUE,
+ 'default' => '',
+ 'description' => t('Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.'),
+ ),
+ 'aid' => array(
+ 'type' => 'varchar',
+ 'length' => 255,
+ 'not null' => TRUE,
+ 'default' => '',
+ 'description' => t("Primary Key: Action's {actions}.aid."),
+ ),
'weight' => array(
'type' => 'int',
'not null' => TRUE,