summaryrefslogtreecommitdiff
path: root/modules/comment/comment.api.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-06-03 06:52:29 +0000
committerDries Buytaert <dries@buytaert.net>2009-06-03 06:52:29 +0000
commitfea41b639e71abc50547164d5bd3617e0dd68a8f (patch)
treeeea642a4347f06b4027f83dc8dcdd35e0b627c89 /modules/comment/comment.api.php
parent2ad42112c4bf8ba8b7137f89922dc807b565a3aa (diff)
downloadbrdo-fea41b639e71abc50547164d5bd3617e0dd68a8f.tar.gz
brdo-fea41b639e71abc50547164d5bd3617e0dd68a8f.tar.bz2
- Patch #468630 by Berdir: fixed error with publishing comments.
Diffstat (limited to 'modules/comment/comment.api.php')
-rw-r--r--modules/comment/comment.api.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/comment/comment.api.php b/modules/comment/comment.api.php
index 4ab8e5c06..85ba96258 100644
--- a/modules/comment/comment.api.php
+++ b/modules/comment/comment.api.php
@@ -62,7 +62,7 @@ function hook_comment_update($form_values) {
* @return
* Nothing.
*/
-function hook_comment_view(&$comment) {
+function hook_comment_view($comment) {
// how old is the comment
$comment->time_ago = time() - $comment->timestamp;
}
@@ -71,12 +71,12 @@ function hook_comment_view(&$comment) {
* The comment is being published by the moderator.
*
* @param $form_values
- * Passes in an array of form values submitted by the user.
+ * Passes in the comment the action is being performed on.
* @return
* Nothing.
*/
-function hook_comment_publish($form_values) {
- drupal_set_message(t('Comment: @subject has been published', array('@subject' => $form_values['subject'])));
+function hook_comment_publish($comment) {
+ drupal_set_message(t('Comment: @subject has been published', array('@subject' => $comment->subject)));
}
/**
@@ -87,7 +87,7 @@ function hook_comment_publish($form_values) {
* @return
* Nothing.
*/
-function hook_comment_unpublish(&$comment) {
+function hook_comment_unpublish($comment) {
drupal_set_message(t('Comment: @subject has been unpublished', array('@subject' => $comment->subject)));
}
@@ -99,7 +99,7 @@ function hook_comment_unpublish(&$comment) {
* @return
* Nothing.
*/
-function hook_comment_delete(&$comment) {
+function hook_comment_delete($comment) {
drupal_set_message(t('Comment: @subject has been deleted', array('@subject' => $comment->subject)));
}