diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2011-05-09 23:11:56 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2011-05-09 23:11:56 +0200 |
| commit | 4038091382fb9d5e429c1eaee79413f077a54d2d (patch) | |
| tree | 5a1f7a906de05b713159bb7d849b22cd70c49f42 | |
| parent | 52316bb3f55235cc3e6bd3317c83b391a80c66da (diff) | |
| download | forums-4038091382fb9d5e429c1eaee79413f077a54d2d.tar forums-4038091382fb9d5e429c1eaee79413f077a54d2d.tar.gz forums-4038091382fb9d5e429c1eaee79413f077a54d2d.tar.bz2 forums-4038091382fb9d5e429c1eaee79413f077a54d2d.tar.xz forums-4038091382fb9d5e429c1eaee79413f077a54d2d.zip | |
[ticket/9999] Remove broken and unused L_FORUM_FOLDER_ALT variable.
L_FORUM_FOLDER_ALT was supposed to be a language variable but the language
variable is never looked up but directly passed as L_FORUM_FOLDER_ALT instead.
Also, the expected functionality is correctly implemented by
FORUM_FOLDER_IMG_ALT.
PHPBB3-9999
| -rw-r--r-- | phpBB/includes/functions_display.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index acaef49fe8..d7422aa2c9 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -477,7 +477,6 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod 'SUBFORUMS' => $s_subforums_list, 'L_SUBFORUM_STR' => $l_subforums, - 'L_FORUM_FOLDER_ALT' => $folder_alt, 'L_MODERATOR_STR' => $l_moderator, 'U_UNAPPROVED_TOPICS' => ($row['forum_id_unapproved_topics']) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=queue&mode=unapproved_topics&f=' . $row['forum_id_unapproved_topics']) : '', |
