- Patch #82858 by RobBoy: incorrect paramaters to _ping_notify() in ping_cron().

5.x
Dries Buytaert 2006-09-07 08:12:24 +00:00
parent 837a314def
commit 160b2e551b
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ function ping_cron() {
if (variable_get('site_name', 0)) {
if (db_num_rows(db_query("SELECT nid FROM {node} WHERE status = 1 AND (created > '". variable_get('cron_last', time()) ."' OR changed > '". variable_get('cron_last', time()) ."')"))) {
_ping_notify(variable_get('site_name', ''), $site_title, $base_url);
_ping_notify(variable_get('site_name', ''), $base_url);
}
}
}