aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_display.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r--phpBB/includes/functions_display.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php
index d760f09dcd..cd2c9e5ae6 100644
--- a/phpBB/includes/functions_display.php
+++ b/phpBB/includes/functions_display.php
@@ -1499,35 +1499,3 @@ function phpbb_gen_download_links($param_key, $param_val, $phpbb_root_path, $php
return $links;
}
-
-/**
-* Concatenate an array into a string list.
-*
-* @param array $items Array of items to concatenate
-* @param object $user The phpBB $user object.
-*
-* @return string String list. Examples: "A"; "A and B"; "A, B, and C"
-*/
-function phpbb_generate_string_list($items, $user)
-{
- if (empty($items))
- {
- return '';
- }
-
- $count = sizeof($items);
- $last_item = array_pop($items);
- $lang_key = 'STRING_LIST_MULTI';
-
- if ($count == 1)
- {
- return $last_item;
- }
- else if ($count == 2)
- {
- $lang_key = 'STRING_LIST_SIMPLE';
- }
- $list = implode($user->lang['COMMA_SEPARATOR'], $items);
-
- return $user->lang($lang_key, $list, $last_item);
-}