From: Ævar Arnfjörð Bjarmason Date: Fri, 6 May 2005 07:03:09 +0000 (+0000) Subject: * Removed redundant prototyping and a debug comment. X-Git-Tag: 1.5.0alpha2~288 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/supprimer.php?a=commitdiff_plain;h=b3bdd8b91858f5045854b9705a35e5b888cd4a5a;p=lhc%2Fweb%2Fwiklou.git * Removed redundant prototyping and a debug comment. --- diff --git a/includes/SpecialGroups.php b/includes/SpecialGroups.php index cf49628800..1941268e79 100644 --- a/includes/SpecialGroups.php +++ b/includes/SpecialGroups.php @@ -11,10 +11,9 @@ require_once('HTMLForm.php'); require_once('Group.php'); /** Entry point */ -function wfSpecialGroups($par=null) { +function wfSpecialGroups() { global $wgRequest; - # Debug statement - // print_r($_POST); + $form = new GroupsForm($wgRequest); $form->execute(); } diff --git a/includes/SpecialUserrights.php b/includes/SpecialUserrights.php index c04c3e974d..5e00665bfb 100644 --- a/includes/SpecialUserrights.php +++ b/includes/SpecialUserrights.php @@ -13,10 +13,8 @@ require_once('HTMLForm.php'); require_once('Group.php'); /** Entry point */ -function wfSpecialUserrights($par=null) { +function wfSpecialUserrights() { global $wgRequest; - # Debug statement - // print_r($_POST); $form = new UserrightsForm($wgRequest); $form->execute(); }