From 6da155db353b613ffbe879c8a9793d5a68f4fa24 Mon Sep 17 00:00:00 2001 From: peterbulmer Date: Thu, 30 Oct 2008 01:17:11 +0000 Subject: [PATCH] MDL-17038 formatting correction Author: Peter Bulmer --- auth/mnet/auth.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/auth/mnet/auth.php b/auth/mnet/auth.php index 5b6991f5fb..3c5993e48a 100644 --- a/auth/mnet/auth.php +++ b/auth/mnet/auth.php @@ -797,7 +797,9 @@ class auth_plugin_mnet extends auth_plugin_base { $mnethostlogs = $DB->get_records_sql($mnethostlogssql, array($mnethostid, $mnet_request->response['last log id'])); - if (false == $mnethostlogs) continue; + if ($mnethostlogs == false) { + continue; + } $processedlogs = array(); -- 2.39.5