diff options
author | Nils Adermann <naderman@naderman.de> | 2014-06-23 11:19:15 -0400 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-06-23 11:19:15 -0400 |
commit | 1f9e1fd177c803d9cf12c20cba9bda37ef3ecf58 (patch) | |
tree | 4a9037ff19a53b085941e0b663753b6cb6aa4aa2 /phpBB/ucp.php | |
parent | 4cb7cbd093e67d418f4a87b8cd6cf8b16ea8c7ab (diff) | |
parent | 729c353f2762966cadd05c1c76769cf667b37398 (diff) | |
download | forums-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.php | 20 |
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); - } -} |