From e9deb8d22e8145884bd8011a815ae63b00c2338b Mon Sep 17 00:00:00 2001
From: Thomas Citharel <tcit@tcit.fr>
Date: Tue, 20 Feb 2018 10:58:50 +0100
Subject: [PATCH] run CS

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
---
 adminstuds.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/adminstuds.php b/adminstuds.php
index 02fe5b58..b642d845 100644
--- a/adminstuds.php
+++ b/adminstuds.php
@@ -154,10 +154,10 @@ if (isset($_POST['update_poll_info'])) {
             $poll->password_hash =  PasswordHasher::hash($password);
             $updated = true;
         }
-	if ($poll->password_hash == null || $poll->hidden == true){
+	if ($poll->password_hash === null || $poll->hidden === true){
 	    $poll->results_publicly_visible = false;
 	}
-        if ($resultsPubliclyVisible != $poll->results_publicly_visible && $poll->password_hash != null && $poll->hidden == false) {
+        if ($resultsPubliclyVisible !== $poll->results_publicly_visible && $poll->password_hash !== null && $poll->hidden === false) {
             $poll->results_publicly_visible = $resultsPubliclyVisible;
             $updated = true;
         }
-- 
GitLab