]> git.p6c8.net - jirafeau.git/blobdiff - tos.php
[TASK] avoid copying install.php in docker image
[jirafeau.git] / tos.php
diff --git a/tos.php b/tos.php
index 44fc86cf3cbab7cfeea4baaf77f81ae8e7c693f7..313f0daee5fbeaec22cbeddb94a2ee612f6b8931 100644 (file)
--- a/tos.php
+++ b/tos.php
  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
-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 +30,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 '<h2>Terms of Service</h2>';
 echo '<div>' . jirafeau_replace_markers($content, true) . '</div>';
 
-require (JIRAFEAU_ROOT . 'lib/template/footer.php');
-
-?>
\ No newline at end of file
+require(JIRAFEAU_ROOT . 'lib/template/footer.php');

patrick-canterino.de