diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-01-09 10:19:42 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-01-09 10:19:42 +0000 |
commit | 075b44386076c0a2f9798f4c3d1056fd3a94ca49 (patch) | |
tree | c6a4b590225a84df0e9bd9147e7a002dcb83d064 /modules/drupal/drupal.module | |
parent | 37d9be8f330742b2b6e6428328729f54ec5b2689 (diff) | |
download | brdo-075b44386076c0a2f9798f4c3d1056fd3a94ca49.tar.gz brdo-075b44386076c0a2f9798f4c3d1056fd3a94ca49.tar.bz2 |
- Improved the watchdog message
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r-- | modules/drupal/drupal.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module index a0fa4a595..3783dbb69 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -95,7 +95,7 @@ function drupal_directory_ping($arguments) { db_query("DELETE FROM {directory} WHERE link = '%s' OR mail = '%s'", $link, $mail); db_query("INSERT INTO {directory} (link, name, mail, slogan, mission, timestamp) VALUES ('%s', '%s', '%s', '%s', '%s', %d)", $link, $name, $mail, $slogan, $mission, time()); - watchdog('directory ping', t('Ping from %name (%link).', array('%name' => "<em>$name</em>", '%link' => "<em>$link</em>"))); + watchdog('directory ping', t('Ping from %name (%link).', array('%name' => "<em>$name</em>", '%link' => "<em>$link</em>")), WATCHDOG_NOTICE, "<a href=\"$link\">visit</a>"); return new xmlrpcresp(new xmlrpcval(1, 'int')); } |