summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1a7d0ba..c7dc428 100644
--- a/README.md
+++ b/README.md
@@ -85,7 +85,7 @@ $dbh = new PDO("mysql:host=localhost;dbname=phpauth", "username", "password");
$config = new PHPAuth\Config($dbh);
$auth = new PHPAuth\Auth($dbh, $config, $lang);
-if (!$auth->isLogged() {
+if (!$auth->isLogged()) {
header('HTTP/1.0 403 Forbidden');
echo "Forbidden";