diff --git a/indra/newview/llpanelgrouproles.cpp b/indra/newview/llpanelgrouproles.cpp
index 2fcaa5666e8a50524b9ca6b8a9248b4606abf119..b21e1747b39e38996f422cd23a2f6ea8bd0d481d 100755
--- a/indra/newview/llpanelgrouproles.cpp
+++ b/indra/newview/llpanelgrouproles.cpp
@@ -2875,10 +2875,7 @@ void LLPanelGroupBanListSubTab::activate()
 	mBanList->deselectAllItems();
 	mDeleteBanButton->setEnabled(FALSE);
 
-	if (gAgent.hasPowerInGroup(mGroupID, GP_GROUP_BAN_ACCESS))
-	{
-		mCreateBanButton->setEnabled(TRUE);
-	}
+	mCreateBanButton->setEnabled(gAgent.hasPowerInGroup(mGroupID, GP_GROUP_BAN_ACCESS));
 
 	// BAKER: Should I really request everytime activate() is called?
 	//		  Perhaps I should only do it on a force refresh, or if an action on the list happens...