diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-28 14:15:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-28 14:15:12 +0000 |
commit | 254233da61a5cda69369f3eee846bd8ad4882066 (patch) | |
tree | 27d0700c1c5ca228280d493d244fbd84abbd5d52 /modules/drupal/drupal.module | |
parent | 167c59e4daabed6cd018cbe62dfc47c3f469886b (diff) | |
download | brdo-254233da61a5cda69369f3eee846bd8ad4882066.tar.gz brdo-254233da61a5cda69369f3eee846bd8ad4882066.tar.bz2 |
- Fixed typo and reworded the filter.
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 64844c215..23ecc31fa 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('drectory 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>"))); return new xmlrpcresp(new xmlrpcval(1, 'int')); } |