diff --git a/gramps/gen/plug/report/stdoptions.py b/gramps/gen/plug/report/stdoptions.py index cec4fddcd..13d985594 100644 --- a/gramps/gen/plug/report/stdoptions.py +++ b/gramps/gen/plug/report/stdoptions.py @@ -2,7 +2,7 @@ # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2013 John Ralls -# Copyright (C) 2013 Paul Franklin +# Copyright (C) 2013-2014 Paul Franklin # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -80,6 +80,10 @@ def add_private_data_option(menu, category, default=True): """ Insert an option for deciding whether the information in the database marked "private" shall be included in the report + + Since historically, before this option, the entire database was + used, including private information, the default for this option + has been set to be True, to include such private information. """ incl_private = BooleanOption(_("Include data marked private"), default) incl_private.set_help(_("Whether to include private data")) diff --git a/gramps/plugins/textreport/placereport.py b/gramps/plugins/textreport/placereport.py index 29c4c67c5..114b49f2d 100644 --- a/gramps/plugins/textreport/placereport.py +++ b/gramps/plugins/textreport/placereport.py @@ -79,7 +79,6 @@ class PlaceReport(Report): menu = options.menu places = menu.get_option_by_name('places').get_value() self.center = menu.get_option_by_name('center').get_value() - incl_private = menu.get_option_by_name('incl_private').get_value() self.set_locale(menu.get_option_by_name('trans').get_value())