From 70aae83c8ee2a44b2eb880214af50f8052e12bf7 Mon Sep 17 00:00:00 2001 From: Gerhard Killesreiter Date: Tue, 11 Apr 2006 11:33:15 +0000 Subject: #58166, fixes for typos, patch by Uwe Herrmann --- includes/session.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/session.inc') diff --git a/includes/session.inc b/includes/session.inc index 73b103082..bd25ed69b 100644 --- a/includes/session.inc +++ b/includes/session.inc @@ -56,7 +56,7 @@ function sess_write($key, $value) { // Only save session data when when the browser sends a cookie. This keeps // crawlers out of session table. This improves speed up queries, reduces // memory, and gives more useful statistics. We can't eliminate anonymous - // session table rows without breaking throttle modulee and "Who's Online" + // session table rows without breaking throttle module and "Who's Online" // block. if ($user->uid || $value || count($_COOKIE)) { db_query("INSERT INTO {sessions} (sid, uid, cache, hostname, session, timestamp) VALUES ('%s', %d, %d, '%s', '%s', %d)", $key, $user->uid, $user->cache, $_SERVER["REMOTE_ADDR"], $value, time()); -- cgit v1.2.3