summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-11-18 22:07:53 +0000
committerDries Buytaert <dries@buytaert.net>2001-11-18 22:07:53 +0000
commitac775ebc27de1c1c73b1ea03aa69811091766791 (patch)
treec8912af108346969558094d1e08aa6a25deac1cf
parente641cacd01aac3942ba52e7f480d0c8e9c54a32f (diff)
downloadbrdo-ac775ebc27de1c1c73b1ea03aa69811091766791.tar.gz
brdo-ac775ebc27de1c1c73b1ea03aa69811091766791.tar.bz2
- re-enabled the weblogs.com notification code
-rw-r--r--modules/weblogs.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/weblogs.module b/modules/weblogs.module
index 24daac3f4..deba41a5b 100644
--- a/modules/weblogs.module
+++ b/modules/weblogs.module
@@ -4,7 +4,7 @@
function weblogs_cron() {
if (db_num_rows(db_query("SELECT nid FROM node WHERE status = 1 AND moderate = 0 AND (created > '". variable_get("weblogs_cron_last", time()) ."' OR changed > '". variable_get("weblogs_cron_last", time()) ."')"), 1)) {
-// weblogs_notify(variable_get("site_name", "drupal") ." - ". variable_get("site_slogan", ""), path_uri());
+ weblogs_notify(variable_get("site_name", "drupal") ." - ". variable_get("site_slogan", ""), path_uri());
}
variable_set("weblogs_cron_last", time());
}