[feature/soft-delete] Use autoloading for content_visibility class

PHPBB3-9657
This commit is contained in:
Joas Schilling 2012-08-28 21:54:33 +02:00
parent 1ab41f8dc6
commit 5ff35ccf72
2 changed files with 2 additions and 6 deletions

View file

@ -82,9 +82,6 @@ require($phpbb_root_path . 'includes/constants.' . $phpEx);
require($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx);
require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
include($phpbb_root_path . 'includes/class_content_visibility.'.$phpEx);
// Set PHP error handler to ours
set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler');

View file

@ -2,9 +2,8 @@
/**
*
* @package phpbb
* @version $Id$
* @copyright (c) 2010 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @copyright (c) 2012 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/