diff options
| author | Greg Roach <fisharebest@gmail.com> | 2013-09-08 20:25:01 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2013-09-08 20:25:01 +0100 |
| commit | d895ee452915a2f48ca645270803ea04df14efc4 (patch) | |
| tree | b8d2e2ddab306c74e893005a1bd2ae8575b2deb9 /includes | |
| parent | c66a96096494c3a1ac6c384043dfed4856474c49 (diff) | |
| download | webtrees-d895ee452915a2f48ca645270803ea04df14efc4.tar.gz webtrees-d895ee452915a2f48ca645270803ea04df14efc4.tar.bz2 webtrees-d895ee452915a2f48ca645270803ea04df14efc4.zip | |
Married names not being added due to incorrect filtering
Diffstat (limited to 'includes')
| -rw-r--r-- | includes/functions/functions_edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/functions/functions_edit.php b/includes/functions/functions_edit.php index 5aed6ddfb9..ef3766ab00 100644 --- a/includes/functions/functions_edit.php +++ b/includes/functions/functions_edit.php @@ -978,7 +978,7 @@ function addNewName() { } foreach (array_unique($tags) as $tag) { - $TAG=WT_Filter::post($tag, WT_REGEX_TAG); + $TAG=WT_Filter::post($tag); if ($TAG) { $gedrec.="\n2 {$tag} {$TAG}"; } @@ -1566,4 +1566,4 @@ function insert_missing_subtags($level1tag, $add_date=false) { add_simple_tag('4 LONG'); } } -}
\ No newline at end of file +} |
