about summary refs log tree commit diff stats
path: root/submit.php
diff options
context:
space:
mode:
authorahriman <ahriman@falte.red>2018-12-02 01:39:29 -0500
committerahriman <ahriman@falte.red>2018-12-02 01:39:29 -0500
commit15d1421c509f02a221559f44b5183b11d018fe19 (patch)
tree2faeade84c17164cf8592f2d1c42adfe1f48d7cf /submit.php
parent2d9ee6e1d1811056546562a715bb02fbbce188a6 (diff)
downloadsite-15d1421c509f02a221559f44b5183b11d018fe19.tar.gz
fixed submit.php w/r/t file it writes notifying me of new members
Diffstat (limited to 'submit.php')
-rwxr-xr-x[-rw-r--r--]submit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/submit.php b/submit.php
index d9e35ea..5d79427 100644..100755
--- a/submit.php
+++ b/submit.php
@@ -125,7 +125,7 @@ if (isset($_REQUEST["username"]) && isset($_REQUEST["email"])) {
                   </div>';
         }
  */
-	    $newuserfile = fopen("newusers.csv", "a");
+	    $newuserfile = fopen("/home/ahriman/users-to-add", "a");
 	    fwrite($newuserfile, "$username $email \"$sshkey\"\n\n");
 	    fclose($newuserfile);
         $fuzzyfile = fopen("fuzzies.log", "a");