X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/9e4d7b5f220d21aa832f88efd784e8f464eb5384..e98ed4a532ae131ed9f8638ed96b844aba3cab9a:/tos.php?ds=inline diff --git a/tos.php b/tos.php index 44fc86c..cc4a831 100644 --- a/tos.php +++ b/tos.php @@ -1,6 +1,9 @@ + * Copyright (C) 2015 Jerome Jutteau + * Copyright (C) 2024 Jirafeau project (see AUTHORS.md) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -16,11 +19,11 @@ * along with this program. If not, see . */ -define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/'); +define('JIRAFEAU_ROOT', dirname(__FILE__) . '/'); -require (JIRAFEAU_ROOT . 'lib/settings.php'); -require (JIRAFEAU_ROOT . 'lib/functions.php'); -require (JIRAFEAU_ROOT . 'lib/lang.php'); +require(JIRAFEAU_ROOT . 'lib/settings.php'); +require(JIRAFEAU_ROOT . 'lib/functions.php'); +require(JIRAFEAU_ROOT . 'lib/lang.php'); // Read ToS template if (is_readable(JIRAFEAU_ROOT . 'lib/tos.local.txt')) { @@ -30,11 +33,8 @@ if (is_readable(JIRAFEAU_ROOT . 'lib/tos.local.txt')) { } // Replace markers and print ToS -require (JIRAFEAU_ROOT . 'lib/template/header.php'); +require(JIRAFEAU_ROOT . 'lib/template/header.php'); -echo '

Terms of Service

'; echo '
' . jirafeau_replace_markers($content, true) . '
'; -require (JIRAFEAU_ROOT . 'lib/template/footer.php'); - -?> \ No newline at end of file +require(JIRAFEAU_ROOT . 'lib/template/footer.php');