From 901478a13039ed0324774ecff978d87ca2fcb822 Mon Sep 17 00:00:00 2001 From: Bertrand Dunogier Date: Wed, 18 Jan 2012 15:30:26 +0100 Subject: [PATCH] Fixed a Typo in RoleService newRoleCreate was used instead of newPolicyCreate --- ezp/PublicAPI/Interfaces/RoleService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ezp/PublicAPI/Interfaces/RoleService.php b/ezp/PublicAPI/Interfaces/RoleService.php index 015eb15c954..631ad6230b4 100644 --- a/ezp/PublicAPI/Interfaces/RoleService.php +++ b/ezp/PublicAPI/Interfaces/RoleService.php @@ -151,11 +151,11 @@ public function newRoleCreate($name); * @param string $function * @return PolicyCreate */ - public function newRoleCreate( $module, $function); + public function newPolicyCreate( $module, $function); /** * instanciates a policy update class * @return PolicyUpdate */ public function newPolicyUpdate(); -} \ No newline at end of file +}