aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
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)
{