From ac2ff8925c57fa6953a842eebceab47bbbdc8ff7 Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Thu, 5 Apr 2018 12:34:17 +0530 Subject: [PATCH] Fix array being written instead of username to lastmember.php --- update_chain.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_chain.php b/update_chain.php index 781acf1..a5597ad 100644 --- a/update_chain.php +++ b/update_chain.php @@ -135,7 +135,7 @@ if ($saved_chain != $chain_string) { fwrite($file, $contents); fclose($file); $file2 = fopen('lastmember.php', 'w'); - $contents = ""; + $contents = ""; fwrite($file2, $contents); fclose($file2); }