From 554d9b080b4be1c3ddfae75d79a0789da8c80cf2 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 7 Jan 2001 19:21:28 +0000 Subject: - fixed 2 small bugs in account.php - drastically improved administration section - drastically revamped story administration: added new feature to schedule the publishing of stories - applied correct naming conventions to submission.php - fixed 1 small glitch in boxes - somewhat expanded the documentation = changed one SQL table - updated the faq with info on drupal - ... and more things I forgot about --- includes/watchdog.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/watchdog.inc') diff --git a/includes/watchdog.inc b/includes/watchdog.inc index 2a007e3ce..4de8210db 100644 --- a/includes/watchdog.inc +++ b/includes/watchdog.inc @@ -10,7 +10,7 @@ $watchdog = array("comment" => array("0", $submission_rate["comment"]), function watchdog($id, $message) { global $user, $watchdog, $watchdog_history; - if ($watchdog[$id][1]) { + if ($watchdog[$id][1] && !($user->permissions == 1 || $user->id == 1)) { if ($log = db_fetch_object(db_query("SELECT * FROM watchdog WHERE hostname = '". getenv("REMOTE_ADDR") ."' AND level = '". $watchdog[$id][0] ."'"))) { if (time() - $log->timestamp < $watchdog[$id][1]) { watchdog("warning", "'". getenv("REMOTE_ADDR") ."' exceeded '$id' submission rate"); -- cgit v1.2.3