]> git.mxchange.org Git - friendica.git/blobdiff - mod/lockview.php
Improve Console/Config display for array values
[friendica.git] / mod / lockview.php
index ead2269c7a98d0341a02cb26986fb38101ebbafe..5134bfdb6bf1dbbb3ea64f98deb029e5ad1060b4 100644 (file)
@@ -1,7 +1,10 @@
 <?php
-
+/**
+ * @file mod/lockview.php
+ */
 use Friendica\App;
 use Friendica\Core\Addon;
+use Friendica\Core\L10n;
 use Friendica\Database\DBM;
 
 function lockview_content(App $a) {
@@ -32,7 +35,7 @@ function lockview_content(App $a) {
        Addon::callHooks('lockview_content', $item);
 
        if($item['uid'] != local_user()) {
-               echo t('Remote privacy information not available.') . '<br />';
+               echo L10n::t('Remote privacy information not available.') . '<br />';
                killme();
        }
 
@@ -40,7 +43,7 @@ function lockview_content(App $a) {
        if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid']))
                && (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) {
 
-               echo t('Remote privacy information not available.') . '<br />';
+               echo L10n::t('Remote privacy information not available.') . '<br />';
                killme();
        }
 
@@ -49,7 +52,7 @@ function lockview_content(App $a) {
        $deny_users = expand_acl($item['deny_cid']);
        $deny_groups = expand_acl($item['deny_gid']);
 
-       $o = t('Visible to:') . '<br />';
+       $o = L10n::t('Visible to:') . '<br />';
        $l = [];
 
        if(count($allowed_groups)) {