summaryrefslogtreecommitdiff
path: root/html/index.php
diff options
context:
space:
mode:
authorAdam Spragg <adam@spra.gg>2018-07-26 15:09:50 +0100
committerAdam Spragg <adam@spra.gg>2018-07-26 15:09:50 +0100
commitf80f775dfbe12cf6b95bda38b73f5dc37327d7fa (patch)
treeb8f597150176d028da15fdb135e372dbc8b11239 /html/index.php
parent4daf6063d86efc8fda2f8286a2474247f62359a3 (diff)
Change the "private file" prefix from "@" to "_"
It has all the benefits previously mentioned in commit 2f547251, as well as mirroring the common programming convention of using a "_" prefix to identify private variables/functions Hides files beginning with _ from mod_autoindex listings As well as 404ing on files starting with "_", also 404 on files starting with ".", as these are also private. Except for /.well-known/, because that's... well known, and should be public.
Diffstat (limited to 'html/index.php')
-rw-r--r--html/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/index.php b/html/index.php
index 29e0cfa..488d9ba 100644
--- a/html/index.php
+++ b/html/index.php
@@ -1,4 +1,4 @@
-<?php include '@include.php'; ?><!DOCTYPE html>
+<?php include '_include.php'; ?><!DOCTYPE html>
<html lang="en">
<head>
<?php echo indent(site_head('Spragg Software Services Ltd.'), 2); ?>