From da61673940bdcda3b64e40d465926afe66a80048 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Mon, 31 Dec 2012 20:41:26 +0100 Subject: [PATCH] Removes unused parameter --- wcfsetup/install/files/lib/system/acl/ACLHandler.class.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/wcfsetup/install/files/lib/system/acl/ACLHandler.class.php b/wcfsetup/install/files/lib/system/acl/ACLHandler.class.php index fa7652e44b..f65df3e961 100644 --- a/wcfsetup/install/files/lib/system/acl/ACLHandler.class.php +++ b/wcfsetup/install/files/lib/system/acl/ACLHandler.class.php @@ -228,7 +228,7 @@ class ACLHandler extends SingletonFactory { * @return array */ public function getPermissions($objectTypeID, array $objectIDs, ACLOptionCategory $category = null, $settingsView = false) { - $optionList = $this->getOptions($objectTypeID, $category, $settingsView); + $optionList = $this->getOptions($objectTypeID, $category); $data = array( 'options' => $optionList, @@ -363,11 +363,9 @@ class ACLHandler extends SingletonFactory { * * @param integer $objectTypeID * @param wcf\data\acl\option\category\ACLOptionCategory $category - * @param boolean $settingsView - * @param boolean $settingsView * @return wcf\data\acl\option\ACLOptionList */ - public function getOptions($objectTypeID, ACLOptionCategory $category = null, $settingsView = false) { + public function getOptions($objectTypeID, ACLOptionCategory $category = null) { $optionList = new ACLOptionList(); $optionList->sqlLimit = 0; if ($category !== null) { -- 2.20.1