Skip to content

Commit

Permalink
Make protected method public
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyzerner committed Jan 22, 2015
1 parent 434bb69 commit 7988402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/controllers/ETMemberController.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function action_index($member = "")
* @param string $member The member's ID.
* @return array An array of the member's details, or false if they weren't found.
*/
protected function getMember($memberId)
public function getMember($memberId)
{
if (!$memberId or !($member = ET::memberModel()->getById((int)$memberId))) {
$this->render404(T("message.memberNotFound"));
Expand Down

0 comments on commit 7988402

Please sign in to comment.