]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Tos.php
Changes:
[friendica.git] / src / Module / Tos.php
index 348c8c1c5f5151ba03cf55a73fbddf991d957641..417f503b8fa20d3a846cfd5e4c73ef6b3d1e6847 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2024, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -27,6 +27,7 @@ use Friendica\Core\Config\Capability\IManageConfigValues;
 use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
 use Friendica\Content\Text\BBCode;
+use Friendica\Model\User;
 use Friendica\Util\Profiler;
 use Psr\Log\LoggerInterface;
 
@@ -98,9 +99,9 @@ class Tos extends BaseModule
 
                        return Renderer::replaceMacros($tpl, [
                                '$title'                => $this->t('Terms of Service'),
-                               '$tostext'              => BBCode::convert($this->config->get('system', 'tostext')),
+                               '$tostext'              => BBCode::convertForUriId(User::getSystemUriId(), $this->config->get('system', 'tostext')),
                                '$rulestitle'           => $this->t('Rules'),
-                               '$rules'                => BBCode::convert($rules),
+                               '$rules'                => BBCode::convertForUriId(User::getSystemUriId(), $rules),
                                '$displayprivstatement' => $this->config->get('system', 'tosprivstatement'),
                                '$privstatementtitle'   => $this->t('Privacy Statement'),
                                '$privacy_operate'      => $this->t('At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'),