aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-06-18 15:21:22 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-06-18 16:57:13 +0200
commitde103f60e32b0756d17299eba11ff8f3c1ed48f1 (patch)
tree247a8a806c2d2f05983a8201d98e51e82c7fae2f /phpBB/ucp.php
parent[ticket/12612] Move functions from memberlist.php to functions_display.php (diff)
downloadphpbb-de103f60e32b0756d17299eba11ff8f3c1ed48f1.tar.gz
phpbb-de103f60e32b0756d17299eba11ff8f3c1ed48f1.tar.bz2
phpbb-de103f60e32b0756d17299eba11ff8f3c1ed48f1.zip
[ticket/12612] Move function from ucp.php to functions_user.php
PHPBB3-12612
Diffstat (limited to 'phpBB/ucp.php')
-rw-r--r--phpBB/ucp.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php
index 4c7723b0ac..182bc2e285 100644
--- a/phpBB/ucp.php
+++ b/phpBB/ucp.php
@@ -357,23 +357,3 @@ $module->assign_tpl_vars(append_sid("{$phpbb_root_path}ucp.$phpEx"));
// Generate the page, do not display/query online list
$module->display($module->get_page_title());
-
-/**
-* Function for assigning a template var if the zebra module got included
-*/
-function _module_zebra($mode, &$module_row)
-{
- global $template;
-
- $template->assign_var('S_ZEBRA_ENABLED', true);
-
- if ($mode == 'friends')
- {
- $template->assign_var('S_ZEBRA_FRIENDS_ENABLED', true);
- }
-
- if ($mode == 'foes')
- {
- $template->assign_var('S_ZEBRA_FOES_ENABLED', true);
- }
-}