diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-04-24 14:29:41 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-04-24 14:29:41 +0000 |
| commit | 9e219ab4d4a39eb526b4eb735096f7b6999f12c5 (patch) | |
| tree | 9f82c2930135b30d6fcdec67c4c43683496ae1cb | |
| parent | 6e8a593eae2312e186b518576f543f76cac844fa (diff) | |
| download | webtrees-9e219ab4d4a39eb526b4eb735096f7b6999f12c5.tar.gz webtrees-9e219ab4d4a39eb526b4eb735096f7b6999f12c5.tar.bz2 webtrees-9e219ab4d4a39eb526b4eb735096f7b6999f12c5.zip | |
Fix: trying to match "unknown" names with a character set fails for "common" characters
| -rw-r--r-- | includes/config_data.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/config_data.php b/includes/config_data.php index 9dff4dbdec..6ecaa424b3 100644 --- a/includes/config_data.php +++ b/includes/config_data.php @@ -46,6 +46,7 @@ $UNKNOWN_NN=array( 'russian' =>'(неопределено)', 'han' =>'(未知)', 'latin' =>'(unknown)', + 'common' =>'(unknown)', ); // Unknown givne name in various scripts @@ -57,6 +58,7 @@ $UNKNOWN_PN=array( 'russian' =>'(неопределено)', 'han' =>'(未知)', 'latin' =>'(unknown)', + 'common' =>'(unknown)', ); // Type attribute of a media object @@ -1772,4 +1774,4 @@ function translate_rela($rela, $sex='') { } // Still no translation? Return original relationship name return $rela; -}
\ No newline at end of file +} |
