1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 07:35:29 +02:00

[feature/php-events] Remove event core.acp_profile_field_edit

The currently implemented event is useless and we couldn't find a MOD, which
requires editing this file in that position.

PHPBB3-9550
This commit is contained in:
Joas Schilling 2012-08-05 14:50:33 +02:00
parent 4eefba9b3f
commit 6571ea1fc8

View File

@ -30,7 +30,6 @@ class acp_profile
global $config, $db, $user, $auth, $template, $cache;
global $phpbb_root_path, $phpbb_admin_path, $phpEx, $table_prefix;
global $request;
global $phpbb_dispatcher;
include($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
@ -877,9 +876,6 @@ class acp_profile
}
}
$vars = array('field_row', 'visibility_ary', 'exclude');
extract($phpbb_dispatcher->trigger_event('core.acp_profile_field_edit', compact($vars)));
break;
}