summaryrefslogtreecommitdiff
path: root/modules/comment/comment.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-12-02 15:21:01 +0000
committerDries Buytaert <dries@buytaert.net>2005-12-02 15:21:01 +0000
commit26bd449860f6baa77ec23349b89ad8a41860eda2 (patch)
treed11947b157bc89e869a0b1641ceb3d57dff2fc35 /modules/comment/comment.module
parent4a3b9fc88353923021fdf15655de29f2a8361fc2 (diff)
downloadbrdo-26bd449860f6baa77ec23349b89ad8a41860eda2.tar.gz
brdo-26bd449860f6baa77ec23349b89ad8a41860eda2.tar.bz2
- Patch #39576 by chx: rename '_execute' to '_submit' and '#execute' to '#submit'.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r--modules/comment/comment.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 67ba5766a..368bc94c1 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -1232,7 +1232,7 @@ function comment_form_validate($form_id, $form_values) {
comment_validate($form_values);
}
-function comment_form_execute($form_id, $form_values) {
+function comment_form_submit($form_id, $form_values) {
$op = isset($_POST['op']) ? $_POST['op'] : '';
$nid = $form_values['nid'];
@@ -1328,7 +1328,7 @@ function theme_comment_controls($form) {
return theme('box', t('Comment viewing options'), $output);
}
-function comment_controls_execute($form_id, $form_values) {
+function comment_controls_submit($form_id, $form_values) {
global $user;
$mode = $form_values['mode'];