diff options
author | Zach Copley <zach@status.net> | 2009-10-09 17:53:35 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-09 17:53:35 -0700 |
commit | 061af8fa06ccb98f667d1ee670da2dbb179d8b0e (patch) | |
tree | 2a7ac2a05af3782d012d6e4b4fe8905a250de993 /actions/apiblockdestroy.php | |
parent | b08d16ef2bf5995ca2feee2d2688e0080eaf5124 (diff) |
CamelCase all function names in the API code
Diffstat (limited to 'actions/apiblockdestroy.php')
-rw-r--r-- | actions/apiblockdestroy.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/apiblockdestroy.php b/actions/apiblockdestroy.php index a869dfe46..470b60ea5 100644 --- a/actions/apiblockdestroy.php +++ b/actions/apiblockdestroy.php @@ -99,9 +99,9 @@ class ApiBlockDestroyAction extends ApiAuthAction if (!$this->user->hasBlocked($this->other) || $this->user->unblock($this->other) ) { - $this->init_document($this->format); - $this->show_profile($this->other, $this->format); - $this->end_document($this->format); + $this->initDocument($this->format); + $this->showProfile($this->other, $this->format); + $this->endDocument($this->format); } else { $this->serverError(_('Unblock user failed.')); } |