Amigo, boa tarde.
Meu arquivo deve estar muito pequeno, pois não tenho essa linha.
Segue abaixo o conteúdo do arquivo na íntegra:
Código: Selecionar todos
1 <?php
2 /**
3 *
4 * @package phpBB3
5 * @version $Id$
6 * @copyright (c) 2005 phpBB Group
7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
8 *
9 */
10 /**
11 */
12 /**
13 * @ignore
14 */
15 define('IN_PHPBB', true);
16 $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
17 $phpEx = substr(strrchr(__FILE__, '.'), 1);
18 include($phpbb_root_path . 'common.' . $phpEx);
19 include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
20 // Start session management
21 $user->session_begin();
22 $auth->acl($user->data);
23 $user->setup('viewforum');
24 display_forums('', $config['load_moderators']);
25 // Set some stats, get posts count from forums data if we... hum... retrieve all forums data
26 $total_posts = $config['num_posts'];
27 $total_topics = $config['num_topics'];
28 $total_users = $config['num_users'];
29 $l_total_user_s = ($total_users == 0) ? 'TOTAL_USERS_ZERO' : 'TOTAL_USERS_OTHER';
30 $l_total_post_s = ($total_posts == 0) ? 'TOTAL_POSTS_ZERO' : 'TOTAL_POSTS_OTHER';
31 $l_total_topic_s = ($total_topics == 0) ? 'TOTAL_TOPICS_ZERO' : 'TOTAL_TOPICS_OTHER';
32 // Grab group details for legend display
33 if ($auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel'))
34 {
35 $sql = 'SELECT group_id, group_name, group_colour, group_type
36 FROM ' . GROUPS_TABLE . '
37 WHERE group_legend = 1
38 ORDER BY group_name ASC';
39 }
40 else
41 {
42 $sql = 'SELECT g.group_id, g.group_name, g.group_colour, g.group_type
43 FROM ' . GROUPS_TABLE . ' g
44 LEFT JOIN ' . USER_GROUP_TABLE . ' ug
45 ON (
46 g.group_id = ug.group_id
47 AND ug.user_id = ' . $user->data['user_id'] . '
48 AND ug.user_pending = 0
49 )
50 WHERE g.group_legend = 1
51 AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
52 ORDER BY g.group_name ASC';
53 }
54 $result = $db->sql_query($sql);
55 $legend = array();
56 while ($row = $db->sql_fetchrow($result))
57 {
58 $colour_text = ($row['group_colour']) ? ' style="color:#' . $row['group_colour'] . '"' : '';
59 $group_name = ($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name'];
60 if ($row['group_name'] == 'BOTS' || ($user->data['user_id'] != ANONYMOUS && !$auth->acl_get('u_viewprofile')))
61 {
62 $legend[] = '<span' . $colour_text . '>' . $group_name . '</span>';
63 }
64 else
65 {
66 $legend[] = '<a' . $colour_text . ' href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&g=' . $row['group_id']) . '">' . $group_name . '</a>';
67 }
68 }
69 $db->sql_freeresult($result);
70 $legend = implode(', ', $legend);
71 // Generate birthday list if required ...
72 $birthday_list = '';
73 if ($config['load_birthdays'] && $config['allow_birthdays'])
74 {
75 $now = getdate(time() + $user->timezone + $user->dst - date('Z'));
76 $sql = 'SELECT u.user_id, u.username, u.user_colour, u.user_birthday
77 FROM ' . USERS_TABLE . ' u
78 LEFT JOIN ' . BANLIST_TABLE . " b ON (u.user_id = b.ban_userid)
79 WHERE (b.ban_id IS NULL
80 OR b.ban_exclude = 1)
81 AND u.user_birthday LIKE '" . $db->sql_escape(sprintf('%2d-%2d-', $now['mday'], $now['mon'])) . "%'
82 AND u.user_type IN (" . USER_NORMAL . ', ' . USER_FOUNDER . ')';
83 $result = $db->sql_query($sql);
84 while ($row = $db->sql_fetchrow($result))
85 {
86 $birthday_list .= (($birthday_list != '') ? ', ' : '') . get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']);
87 if ($age = (int) substr($row['user_birthday'], -4))
88 {
89 $birthday_list .= ' (' . ($now['year'] - $age) . ')';
90 }
91 }
92 $db->sql_freeresult($result);
93 }
94 // Assign index specific vars
95 $template->assign_vars(array(
96 'TOTAL_POSTS' => sprintf($user->lang[$l_total_post_s], $total_posts),
97 'TOTAL_TOPICS' => sprintf($user->lang[$l_total_topic_s], $total_topics),
98 'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
99 'NEWEST_USER' => sprintf($user->lang['NEWEST_USER'], get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])),
100 'LEGEND' => $legend,
101 'BIRTHDAY_LIST' => $birthday_list,
102 'FORUM_IMG' => $user->img('forum_read', 'NO_UNREAD_POSTS'),
103 'FORUM_UNREAD_IMG' => $user->img('forum_unread', 'UNREAD_POSTS'),
104 'FORUM_LOCKED_IMG' => $user->img('forum_read_locked', 'NO_UNREAD_POSTS_LOCKED'),
105 'FORUM_UNREAD_LOCKED_IMG' => $user->img('forum_unread_locked', 'UNREAD_POSTS_LOCKED'),
106 'S_LOGIN_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'),
107 'S_DISPLAY_BIRTHDAY_LIST' => ($config['load_birthdays']) ? true : false,
108 'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'hash=' . generate_link_hash('global') . '&mark=forums') : '',
109 'U_MCP' => ($auth->acl_get('m_') || $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=main&mode=front', true, $user->session_id) : '')
110 );
111 // Output page
112 page_header($user->lang['INDEX']);
113 $template->set_filenames(array(
114 'body' => 'index_body.html')
115 );
116 page_footer();
117 ?>