summaryrefslogtreecommitdiff
path: root/includes/classes/class_reportbase.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/classes/class_reportbase.php')
-rw-r--r--includes/classes/class_reportbase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/classes/class_reportbase.php b/includes/classes/class_reportbase.php
index a66b9cb9a5..2722a4d7f0 100644
--- a/includes/classes/class_reportbase.php
+++ b/includes/classes/class_reportbase.php
@@ -460,7 +460,7 @@ class ReportBase {
}
/**
- * Main PGV Report Element class that all other page elements are extended from
+ * Main WT Report Element class that all other page elements are extended from
*
* @package webtrees
* @subpackage Reports
@@ -3220,7 +3220,7 @@ function ListSHandler($attrs) {
}
unset($attrs[$attr]); // This filter has been fully processed
} elseif (($listname=="family") && (preg_match('/^NAME CONTAINS (.+)$/', $value, $match))) {
- // Eventually, family "names" will be stored in pgv_name. Until then, an extra is needed....
+ // Eventually, family "names" will be stored in wt_name. Until then, an extra is needed....
$sql_join[]="JOIN `##link` AS {$attr}a ON ({$attr}a.l_file={$sql_col_prefix}file AND {$attr}a.l_from={$sql_col_prefix}id)";
$sql_join[]="JOIN `##name` AS {$attr}b ON ({$attr}b.n_file={$sql_col_prefix}file AND n_id={$sql_col_prefix}id)";
$sql_where[]="{$attr}a.l_type=IN ('HUSB, 'WIFE')";