aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-10-19 19:26:58 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-10-19 19:26:58 +0000
commitc091164d7ed991e75ec4b9ef7f5b0fd25b46438e (patch)
treea3dd063dcb659db6f6c2bc0cb81d240e38f23dd1 /phpBB/includes/functions_posting.php
parent028c05a9a6977287380398119633ff789d23a49d (diff)
downloadforums-c091164d7ed991e75ec4b9ef7f5b0fd25b46438e.tar
forums-c091164d7ed991e75ec4b9ef7f5b0fd25b46438e.tar.gz
forums-c091164d7ed991e75ec4b9ef7f5b0fd25b46438e.tar.bz2
forums-c091164d7ed991e75ec4b9ef7f5b0fd25b46438e.tar.xz
forums-c091164d7ed991e75ec4b9ef7f5b0fd25b46438e.zip
- search updates
git-svn-id: file:///svn/phpbb/trunk@5003 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 7d4849b4e8..7b87fb83be 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -513,27 +513,6 @@ function decode_message(&$message, $bbcode_uid = '')
return;
}
-// Temp Function - strtolower - borrowed from php.net
-function phpbb_strtolower($string)
-{
- $new_string = '';
-
- for ($i = 0; $i < strlen($string); $i++)
- {
- if (ord(substr($string, $i, 1)) > 0xa0)
- {
- $new_string .= strtolower(substr($string, $i, 2));
- $i++;
- }
- else
- {
- $new_string .= strtolower($string{$i});
- }
- }
-
- return $new_string;
-}
-
// Generate Topic Icons for display
function posting_gen_topic_icons($mode, $icon_id)
{