diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-11 11:33:15 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-11 11:33:15 +0000 |
commit | 70aae83c8ee2a44b2eb880214af50f8052e12bf7 (patch) | |
tree | 7ed206ab5d302d9699cd11e28b6a3bbbd0ac5fdb /includes/session.inc | |
parent | 4b87417062261795eb4a2ce5909c2dacc8ce4704 (diff) | |
download | brdo-70aae83c8ee2a44b2eb880214af50f8052e12bf7.tar.gz brdo-70aae83c8ee2a44b2eb880214af50f8052e12bf7.tar.bz2 |
#58166, fixes for typos, patch by Uwe Herrmann
Diffstat (limited to 'includes/session.inc')
-rw-r--r-- | includes/session.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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()); |