summaryrefslogtreecommitdiff
path: root/includes/functions/functions_lang.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/functions/functions_lang.php')
-rw-r--r--includes/functions/functions_lang.php48
1 files changed, 0 insertions, 48 deletions
diff --git a/includes/functions/functions_lang.php b/includes/functions/functions_lang.php
deleted file mode 100644
index 36d67879ca..0000000000
--- a/includes/functions/functions_lang.php
+++ /dev/null
@@ -1,48 +0,0 @@
-<?php
-/**
- *
- * Language specific functions
- *
- * webtrees: Web based Family History software
- * Copyright (C) 2010 webtrees development team.
- *
- * Derived from PhpGedView
- * Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
- *
- * 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
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * @package webtrees
- * @subpackage DB
- * @version $Id$
- */
-
-if (!defined('WT_WEBTREES')) {
- header('HTTP/1.0 403 Forbidden');
- exit;
-}
-
-define('WT_FUNCTIONS_LANG_PHP', '');
-
-/**
- * Takes a string and converts certain characters in the string to others for the purpose of soundex searches
- */
-function Character_Substitute($input)
-{
- $stringsToReplace = array("/AE/", "/ae/", "/OE/", "/oe/", "/UE/", "/ue/", "/ss/", "/SS/");
- $replacements = array("Ä", "ä", "Ö", "ö", "Ü", "ü", "ß", "ß");
-
- preg_replace($stringsToReplace, $replacements, $input);
-}
-?>