From 758332d63569e033fd417a79ffd046373d77decf Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 17 Oct 2017 12:05:25 +0400 Subject: Fix Moodle Code Checker --- auth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth.php b/auth.php index ace1338..d936628 100644 --- a/auth.php +++ b/auth.php @@ -134,9 +134,9 @@ class auth_plugin_link extends auth_plugin_base { $username = htmlspecialchars($_REQUEST['username']); $password = htmlspecialchars($_REQUEST['password']); - // User existence check + // User existence check. if ($user = $DB->get_record('user', array( 'username' => $username) )) { - // Verification of authorization data + // Verification of authorization data. if (validate_internal_user_password($user, $password)) { complete_user_login($user); $this->redirect_user(); -- cgit v1.2.3