aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_compatibility.php
diff options
context:
space:
mode:
authorCrizzo <mail@crizzo.de>2014-03-15 15:18:04 +0100
committerCrizzo <mail@crizzo.de>2014-03-28 19:12:31 +0100
commit0d4968f7356cc177a4a0921eef2853c343798110 (patch)
treeaa29feb50c1a0c36eecdf17b3b2cfcb7d2f5b0da /phpBB/includes/functions_compatibility.php
parente149c266ce10177a45337392f63bdcc11e1af3b6 (diff)
downloadforums-0d4968f7356cc177a4a0921eef2853c343798110.tar
forums-0d4968f7356cc177a4a0921eef2853c343798110.tar.gz
forums-0d4968f7356cc177a4a0921eef2853c343798110.tar.bz2
forums-0d4968f7356cc177a4a0921eef2853c343798110.tar.xz
forums-0d4968f7356cc177a4a0921eef2853c343798110.zip
[ticket/9758] Removed useless if-conditions to include functions.php
PHPBB3-9758
Diffstat (limited to 'phpBB/includes/functions_compatibility.php')
-rw-r--r--phpBB/includes/functions_compatibility.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/phpBB/includes/functions_compatibility.php b/phpBB/includes/functions_compatibility.php
index e1539a5493..164dd4cb99 100644
--- a/phpBB/includes/functions_compatibility.php
+++ b/phpBB/includes/functions_compatibility.php
@@ -39,13 +39,6 @@ function get_user_avatar($avatar, $avatar_type, $avatar_width, $avatar_height, $
'avatar_height' => $avatar_height,
);
- if (!function_exists('phpbb_get_avatar'))
- {
- global $phpbb_root_path, $phpEx;
-
- include($phpbb_root_path . 'includes/functions.' . $phpEx);
- }
-
return phpbb_get_avatar($row, $alt, $ignore_config);
}