aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/ucp.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2014-06-23 11:19:15 -0400
committerNils Adermann <naderman@naderman.de>2014-06-23 11:19:15 -0400
commit1f9e1fd177c803d9cf12c20cba9bda37ef3ecf58 (patch)
tree4a9037ff19a53b085941e0b663753b6cb6aa4aa2 /phpBB/ucp.php
parent4cb7cbd093e67d418f4a87b8cd6cf8b16ea8c7ab (diff)
parent729c353f2762966cadd05c1c76769cf667b37398 (diff)
downloadforums-1f9e1fd177c803d9cf12c20cba9bda37ef3ecf58.tar
forums-1f9e1fd177c803d9cf12c20cba9bda37ef3ecf58.tar.gz
forums-1f9e1fd177c803d9cf12c20cba9bda37ef3ecf58.tar.bz2
forums-1f9e1fd177c803d9cf12c20cba9bda37ef3ecf58.tar.xz
forums-1f9e1fd177c803d9cf12c20cba9bda37ef3ecf58.zip
Merge remote-tracking branch 'github-nickvergessen/ticket/12612-ascraeus' into develop-ascraeus
* github-nickvergessen/ticket/12612-ascraeus: [ticket/12612] Move functions from mcp.php to functions_mcp.php [ticket/12612] Move function from ucp.php to functions_user.php [ticket/12612] Move functions from memberlist.php to functions_display.php [ticket/12612] Move functions from posting.php to functions_posting.php
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);
- }
-}