3272: Proposal for updating config settings
svn: r13346
This commit is contained in:
@ -52,7 +52,7 @@ import Utils
|
||||
from QuestionDialog import ErrorDialog
|
||||
from gen.plug import PluginManager, ExportPlugin
|
||||
from glade import Glade
|
||||
import Config
|
||||
import config
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
@ -453,7 +453,7 @@ class GeneWebWriter(object):
|
||||
|
||||
def get_ref_name(self,person):
|
||||
surname = self.rem_spaces( person.get_primary_name().get_surname())
|
||||
firstname = Config.get(Config.PRIVATE_GIVEN_TEXT)
|
||||
firstname = config.get('preferences.private-given-text')
|
||||
if not (Utils.probably_alive(person,self.db) and \
|
||||
self.restrict and self.living):
|
||||
firstname = self.rem_spaces( person.get_primary_name().get_first_name())
|
||||
@ -464,7 +464,7 @@ class GeneWebWriter(object):
|
||||
|
||||
def get_child_ref_name(self,person,father_lastname):
|
||||
surname = self.rem_spaces( person.get_primary_name().get_surname())
|
||||
firstname = Config.get(Config.PRIVATE_GIVEN_TEXT)
|
||||
firstname = config.get('preferences.private-given-text')
|
||||
if not (Utils.probably_alive(person,self.db) and \
|
||||
self.restrict and self.living):
|
||||
firstname = self.rem_spaces( person.get_primary_name().get_first_name())
|
||||
|
Reference in New Issue
Block a user