Change the format to display the count.

This commit is contained in:
markjcrane
2015-09-04 22:06:09 -06:00
parent 475cd23574
commit 7cfd5da369
3 changed files with 4 additions and 4 deletions

View File

@@ -127,7 +127,7 @@ require_once "resources/check_auth.php";
echo "<table width='100%' border='0' cellspacing='0' cellpadding='0'>\n";
echo "<tr>\n";
echo "<td width='100%'>\n";
echo " <b>".count($registrations)." ".$text['header-registrations']."</b>\n";
echo " <b>".$text['header-registrations']." (".count($registrations).")</b>\n";
echo "</td>\n";
echo "<td valign='middle' nowrap='nowrap' style='padding-right: 15px' id='refresh_state'>";
echo " <img src='resources/images/refresh_active.gif' style='width: 16px; height: 16px; border: none; margin-top: 3px; cursor: pointer;' onclick='refresh_stop();' alt=\"".$text['label-refresh_pause']."\" title=\"".$text['label-refresh_pause']."\">";

View File

@@ -1,6 +1,6 @@
<?php
$text['title-user_manager']['en-us'] = "Users";
$text['title-user_manager']['en-us'] = "User Manager";
$text['title-user_manager']['es-cl'] = "Administración de Usuarios";
$text['title-user_manager']['pt-pt'] = "Gestão de Utilizadores";
$text['title-user_manager']['fr-fr'] = "Gestion des utilisateurs";
@@ -651,7 +651,7 @@ $text['label-additional_info']['ro'] = "";
$text['label-additional_info']['de-at'] = "Zusätzliche Information";
$text['label-additional_info']['he'] = "מידע נוסף";
$text['header-user_manager']['en-us'] = "User Manager";
$text['header-user_manager']['en-us'] = "Users";
$text['header-user_manager']['es-cl'] = "Administración de Usuario";
$text['header-user_manager']['pt-pt'] = "Gestão de Utilizadores";
$text['header-user_manager']['fr-fr'] = "Gestion des utilisateurs";

View File

@@ -137,7 +137,7 @@ else {
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<form method='post' action=''>";
echo "<tr>\n";
echo "<td align='left' width='90%' nowrap='nowrap' valign='top'><b>".$user_count." ".$text['header-user_manager']."</b></td>\n";
echo "<td align='left' width='90%' nowrap='nowrap' valign='top'><b>".$text['header-user_manager']." (".$num_rows.")</b></td>\n";
echo "<td align='right' nowrap='nowrap'>";
if (permission_exists('user_all')) {
if ($_GET['showall'] == 'true') {