aboutsummaryrefslogtreecommitdiff
path: root/http
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-09-24 08:46:41 +0100
committerJoe Carstairs <me@joeac.net>2026-09-24 08:46:41 +0100
commitca494d5a3b0e6018b7ed5db56bc5e16bdbe6d9a4 (patch)
tree816ef4e65bd4a569bedb9944d199ddadf4d02251 /http
parent5a03b1b00e17498159a2a694ff7e0dd581b65cfa (diff)
: separator between user and pass in bcrypt.phpHEADmain
Diffstat (limited to 'http')
-rw-r--r--http/public/do/bcrypt.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/http/public/do/bcrypt.php b/http/public/do/bcrypt.php
index 3eb1b83..a61dd9e 100644
--- a/http/public/do/bcrypt.php
+++ b/http/public/do/bcrypt.php
@@ -54,4 +54,4 @@ header('Content-Type: text/plain; charset=utf-8');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Pragma: no-cache');
-echo $user . $hash;
+echo $user . ':' . $hash;