diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-07 00:13:58 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-07 00:13:58 -0700 |
commit | 7b92df6a56c7f1f8bbbafabbadb4e796b1d2d14b (patch) | |
tree | b5e7ff0e34f11cdc74a7ca97b0886df27f29dce8 /modules/gallery/libraries | |
parent | c9d38e606f188c33ced63ff5ee5f29c1413b9da5 (diff) | |
parent | 85e4497e16a33fddf943e6c506847d7354d527dd (diff) |
Merge branch 'master' of github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/libraries')
-rw-r--r-- | modules/gallery/libraries/InPlaceEdit.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/gallery/libraries/InPlaceEdit.php b/modules/gallery/libraries/InPlaceEdit.php index 057874e3..67ab3805 100644 --- a/modules/gallery/libraries/InPlaceEdit.php +++ b/modules/gallery/libraries/InPlaceEdit.php @@ -35,22 +35,22 @@ class InPlaceEdit_Core { return $instance; } - public function add_action($action) { + public function action($action) { $this->action = $action; return $this; } - public function add_rules($rules) { + public function rules($rules) { $this->rules += $rules; return $this; } - public function add_messages($messages) { + public function messages($messages) { $this->messages += $messages; return $this; } - public function add_callback($callback) { + public function callback($callback) { $this->callback = $callback; return $this; } |