git.p6c8.net
/
jirafeau_project.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Store filesize before encrypting the file
[jirafeau_project.git]
/
tos.php
diff --git
a/tos.php
b/tos.php
index 44fc86cf3cbab7cfeea4baaf77f81ae8e7c693f7..cc4a8319b2072261201d56f7c72e7bfcdbf05ed7 100644
(file)
--- a/
tos.php
+++ b/
tos.php
@@
-1,6
+1,9
@@
<?php
/*
* Jirafeau, your web file repository
<?php
/*
* Jirafeau, your web file repository
+ * Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
+ * Copyright (C) 2015 Jerome Jutteau <jerome@jutteau.fr>
+ * Copyright (C) 2024 Jirafeau project <https://gitlab.com/jirafeau> (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
*
* 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 <https://www.gnu.org/licenses/>.
*/
* 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')) {
// 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
}
// 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>';
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