summaryrefslogtreecommitdiff
path: root/includes/functions/functions_print_lists.php
diff options
context:
space:
mode:
authorNigel Osborne <kiwi3685@me.com>2010-05-04 03:34:00 +0000
committerNigel Osborne <kiwi3685@me.com>2010-05-04 03:34:00 +0000
commite2fa6e8bcb657cc8cc1f93174ed0270fde6220a5 (patch)
tree1c685fef5a36c8c6944993b8d9ab84e5fcefc431 /includes/functions/functions_print_lists.php
parentebd4846cf495e5a3b5dbe4ac52804df6850a0c20 (diff)
downloadwebtrees-e2fa6e8bcb657cc8cc1f93174ed0270fde6220a5.tar.gz
webtrees-e2fa6e8bcb657cc8cc1f93174ed0270fde6220a5.tar.bz2
webtrees-e2fa6e8bcb657cc8cc1f93174ed0270fde6220a5.zip
Replace _PGVUSER with _WT_USER
Diffstat (limited to 'includes/functions/functions_print_lists.php')
-rw-r--r--includes/functions/functions_print_lists.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php
index 6ca8c9c685..f13f7855fb 100644
--- a/includes/functions/functions_print_lists.php
+++ b/includes/functions/functions_print_lists.php
@@ -1512,7 +1512,7 @@ function format_surname_list($surnames, $style, $totals) {
*
* @param array $datalist contain records that were extracted from the database.
*/
-function print_changes_table($datalist, $showChange=true, $total='', $show_pgvu=true) {
+function print_changes_table($datalist, $showChange=true, $total='', $show_WT_USER=true) {
global $SHOW_ID_NUMBERS, $SHOW_MARRIED_NAMES, $TEXT_DIRECTION;
if (count($datalist)<1) return;
require_once WT_ROOT.'js/sorttable.js.htm';
@@ -1529,8 +1529,8 @@ function print_changes_table($datalist, $showChange=true, $total='', $show_pgvu=
echo "<th style=\"display:none\">GIVN</th>";
if ($showChange) {
echo "<th class=\"list_label\">", translate_fact('CHAN'), "</th>";
- if ($show_pgvu) {
- echo "<th class=\"list_label\">", translate_fact('_PGVU'), "</th>";
+ if ($show_WT_USER) {
+ echo "<th class=\"list_label\">", translate_fact('_WT_USER'), "</th>";
}
}
echo "</tr>\n";
@@ -1590,7 +1590,7 @@ function print_changes_table($datalist, $showChange=true, $total='', $show_pgvu=
if ($showChange) {
//-- Last change date/time
print "<td class=\"list_value_wrap rela\">".$record->LastChangeTimestamp(empty($SEARCH_SPIDER))."</td>";
- if ($show_pgvu) {
+ if ($show_WT_USER) {
//-- Last change user
print "<td class=\"list_value_wrap rela\">".$record->LastChangeUser(empty($SEARCH_SPIDER))."</td>";
}