summaryrefslogtreecommitdiff
path: root/users_rss.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-15 16:46:08 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-15 16:46:08 +0100
commit1ed18b09a1c6bfe9e060ca684cee2eddd987974b (patch)
tree5438e41369a6c46e743a2945eb0651990a8d98e9 /users_rss.php
parent02a3c1e025dfcac83f04a4d08599e3e361b94997 (diff)
downloadusers-1ed18b09a1c6bfe9e060ca684cee2eddd987974b.tar.gz
users-1ed18b09a1c6bfe9e060ca684cee2eddd987974b.tar.bz2
users-1ed18b09a1c6bfe9e060ca684cee2eddd987974b.zip
Namespace fixes
Diffstat (limited to 'users_rss.php')
-rwxr-xr-xusers_rss.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/users_rss.php b/users_rss.php
index fdd9a53..dbcb693 100755
--- a/users_rss.php
+++ b/users_rss.php
@@ -18,8 +18,8 @@ $gBitSystem->verifyFeature( 'users_rss' );
require_once RSS_PKG_INCLUDE_PATH.'rss_inc.php';
-$rss->title = $gBitSystem->getConfig( 'users_rss_title', $gBitSystem->getConfig( 'site_title' ).' - '.tra( 'Registrations' ) );
-$rss->description = $gBitSystem->getConfig( 'users_rss_description', $gBitSystem->getConfig( 'site_title' ).' - '.tra( 'RSS Feed' ) );
+$rss->title = $gBitSystem->getConfig( 'users_rss_title', $gBitSystem->getConfig( 'site_title' ).' - '.KernelTools::tra( 'Registrations' ) );
+$rss->description = $gBitSystem->getConfig( 'users_rss_description', $gBitSystem->getConfig( 'site_title' ).' - '.KernelTools::tra( 'RSS Feed' ) );
// check permission to view users pages
if( !$gBitUser->hasPermission( 'p_users_view_user_list' ) ) {