From 9b0db83256a714f8ccbf562ac5795c52518f943f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lucas?= Date: Tue, 11 Nov 2014 21:17:10 +0100 Subject: [PATCH] The text shown if you cancel the password prompt is clearer now. --- config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.php b/config.php index ae41523..c5f1c21 100644 --- a/config.php +++ b/config.php @@ -20,7 +20,7 @@ if(!is_null($config['cops_basic_authentication']) && { header('WWW-Authenticate: Basic realm="COPS Authentication"'); header('HTTP/1.0 401 Unauthorized'); - echo 'Text to send if user hits Cancel button'; + echo 'This site is password protected'; exit; } }