non security modules update

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-20 16:32:07 +02:00
parent 6a8d30db08
commit 37fbabab56
466 changed files with 32690 additions and 9652 deletions

View File

@@ -2,7 +2,6 @@
/**
* @file
*
* Install, update and uninstall functions for the Honeypot module.
*/
@@ -38,8 +37,9 @@ function honeypot_schema() {
* Implements hook_install().
*/
function honeypot_install() {
drupal_set_message(st("Honeypot installed successfully. Please !link to protect your forms from spam bots.", array(
'!link' => l(st('configure Honeypot'), 'admin/config/content/honeypot')
$t = get_t();
drupal_set_message($t("Honeypot installed successfully. Please !link to protect your forms from spam bots.", array(
'!link' => l($t('configure Honeypot'), 'admin/config/content/honeypot'),
)));
}
@@ -65,7 +65,6 @@ function honeypot_update_7001() {
$ret = array();
// Leaving this in because I had it in version 1.3. Silly me.
return $ret;
}