From 5705796638ec1a3c9b268ea7c1edccf991e7b023 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20S=CC=8Ckoda?= Date: Thu, 15 Nov 2012 08:38:12 +0100 Subject: [PATCH] MDL-36211 fix log message typo Credit goes to Dan Poltawski, thanks. --- lib/sessionlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sessionlib.php b/lib/sessionlib.php index 36855ed74b6..aedd34454f0 100644 --- a/lib/sessionlib.php +++ b/lib/sessionlib.php @@ -613,7 +613,7 @@ class database_session extends session_stub { // Finally read the full session data because we know we have the lock now. if (!$record = $this->database->get_record('sessions', array('id'=>$record->id))) { - error_log('Can read session record'); + error_log('Cannot read session record'); $this->failed = true; return ''; }