Next wave of lesser getMessage() usage and more EL
[mailer.git] / inc / modules / admin / what-usr_online.php
index e0c413635834646d52720f57c3cfe3b803ef600e..a19cb85f150682a19a9c490b56b40eebd2464f46 100644 (file)
@@ -69,10 +69,10 @@ if (isExtensionActive('online')) {
 
                        if ($row['is_admin'] == 'Y') {
                                // Is an administrator
-                               $row['userid'] = getMessage('_IS_ADMIN');
+                               $row['userid'] = '{--_IS_ADMIN--}';
                        } elseif (($row['is_member'] != 'Y') && ($row['is_admin'] != 'Y')) {
                                // Is a guest
-                               $row['userid'] = getMessage('_IS_GUEST');
+                               $row['userid'] = '{--_IS_GUEST--}';
                        } elseif (isValidUserId($row['userid'])) {
                                // Add profile link to userid
                                $row['userid'] = generateUserProfileLink($row['userid']);
@@ -92,7 +92,7 @@ if (isExtensionActive('online')) {
 
                // Remember rows and fancy time in array
                $content['rows']           = $OUT;
-               $content['online_timeout'] = getMessage('ONLINE_TIMEOUT_IS');
+               $content['online_timeout'] = '{--ONLINE_TIMEOUT_IS--}';
 
                // Load footer template
                loadTemplate('admin_list_online', false, $content);