diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2013-06-28 11:16:52 +0200 | 
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2013-07-14 11:51:32 -0400 | 
| commit | 137cec58950ad547a204a47b1e84e46fdc29139c (patch) | |
| tree | 099e4a00b2f79e105f2129973dd28bc3f2869177 /phpBB/includes | |
| parent | e8d2a2fd8861e5ef2473aa670808dc6098aa1241 (diff) | |
| download | forums-137cec58950ad547a204a47b1e84e46fdc29139c.tar forums-137cec58950ad547a204a47b1e84e46fdc29139c.tar.gz forums-137cec58950ad547a204a47b1e84e46fdc29139c.tar.bz2 forums-137cec58950ad547a204a47b1e84e46fdc29139c.tar.xz forums-137cec58950ad547a204a47b1e84e46fdc29139c.zip  | |
[ticket/11582] Fix event dispatcher class name
PHPBB3-11582
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/permissions.php | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/permissions.php b/phpBB/includes/permissions.php index 1e2cf9e4aa..c338727fc0 100644 --- a/phpBB/includes/permissions.php +++ b/phpBB/includes/permissions.php @@ -19,16 +19,16 @@ class phpbb_permissions  {  	/**  	* Event dispatcher object -	* @var phpbb_dispatcher +	* @var phpbb_event_dispatcher  	*/  	protected $dispatcher;  	/**  	* Constructor  	* -	* @param	phpbb_dispatcher	$phpbb_dispatcher	Event dispatcher +	* @param	phpbb_event_dispatcher	$phpbb_dispatcher	Event dispatcher  	* @return	null  	*/ -	public function __construct($phpbb_dispatcher) +	public function __construct(phpbb_event_dispatcher $phpbb_dispatcher)  	{  		$this->dispatcher = $phpbb_dispatcher;  	}  | 
