From d0d3e6110f69e2ee15f41fc3640cfe3278085518 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Tue, 15 Jan 2008 08:00:24 +0000
Subject: [PATCH] - Patch #206495 by jvandyk: improved consistency of trigger
 descriptions.

---
 modules/taxonomy/taxonomy.module | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index c1bca9ff1f35..25d01b711225 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -990,7 +990,7 @@ function taxonomy_vocabulary_load($vid) {
       $vocabularies[$vid] = $voc;
     }
   }
-  
+
   // Return NULL if this vocabulary does not exist.
   return !empty($vocabularies[$vid]) ? $vocabularies[$vid] : NULL;
 }
@@ -1297,13 +1297,13 @@ function taxonomy_hook_info() {
     'taxonomy' => array(
       'taxonomy' => array(
         'insert' => array(
-          'runs when' => t('After saving a new term to the database.'),
+          'runs when' => t('After saving a new term to the database'),
         ),
         'update' => array(
-          'runs when' => t('After saving an updated term to the database.'),
+          'runs when' => t('After saving an updated term to the database'),
         ),
         'delete' => array(
-          'runs when' => t('After deleting a term.')
+          'runs when' => t('After deleting a term')
         ),
       ),
     ),
-- 
GitLab