summaryrefslogtreecommitdiff
path: root/modules/comment.module
Commit message (Collapse)AuthorAge
* - Patch #51142 by markus: hook_comment not called for all update operations.Dries Buytaert2006-03-06
|
* - Patch #51543 by wtanaka: clicking on 'add new comment' takes you to the ↵Dries Buytaert2006-03-06
| | | | wrong place.
* - Patch #50835 by markus: print message when replying to non-existing comment.Dries Buytaert2006-03-04
|
* #50771, Wrong user name in admin/comment, patach by Markus PetruxGerhard Killesreiter2006-02-27
|
* - Patch #51347 by eafarris: fixed typo: coment -> comment.Dries Buytaert2006-02-26
|
* - Patch #46690 by Zen: 'user comments' -> 'comment settings'.Dries Buytaert2006-02-26
|
* - Patch #50755 by markus: = -> ==.Dries Buytaert2006-02-22
|
* - Patch #47699 by wtanaka: performance improvement.Dries Buytaert2006-02-22
|
* - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.)Dries Buytaert2006-02-21
|
* - Patch #43572 by Tobias: don't accept spaces.Dries Buytaert2006-02-14
|
* - Patch #48622 by adrian: remove drupal_goto from _submit functions.Dries Buytaert2006-02-10
|
* - #48518: Editing own comment broken under postgreslSteven Wittens2006-02-09
|
* - #48239: Comment thread coding inefficientSteven Wittens2006-02-09
|
* - Patch #47705 by DriesK: comment moderation/approval wasn't working due to ↵Dries Buytaert2006-02-04
| | | | a bug with its forms.
* - Patch #47045 by Cvbge: fixed problem with deleting comments.Dries Buytaert2006-02-01
|
* - Modified patch #46227 by chx: comment token is broken.Dries Buytaert2006-01-31
|
* - Modified patch #45723 by wtanaka: creating a comment, editing a comment, ↵Dries Buytaert2006-01-26
| | | | or anything that validates a comment fails on PHP5.
* - Patch #40752 by moshe/wtanaka: login and regsiter links on each comment ↵Dries Buytaert2006-01-26
| | | | don't redirect back to the topic.
* - Patch #40753 by wtanaka/killes: #comment-form has disappeared from ↵Dries Buytaert2006-01-25
| | | | comment.module
* - Patch #44101 by Cvbge: deleting a comment creates incorrect entry in ↵Dries Buytaert2006-01-22
| | | | node_comment_statistics.
* - Patch #45380 by Neil: usability improvement: disable anonymous commenting ↵Dries Buytaert2006-01-20
| | | | options when anonymous people can't comment.
* - Patch #45530 by Morbus: filter_form shouldn't default to #weight 0Dries Buytaert2006-01-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When a form element doesn't specify a #weight, it is assumed internally as #weight 0. However, to ensure that our form elements display visually *as they were defined in the array* we, in form_builder, count the number of elements, divide by 1000, and set that as the weight: # Assign a decimal placeholder weight to preserve original array order if (!isset($form[$key]['#weight'])) { $form[$key]['#weight'] = $count/1000; } The above code will set the #weights of elements that have not defined a weight to something like 0 (first element in array definition), 0.001, 0.002, and so on. However, anytime a form element *explicitly* defines a #weight of 0, that #weight is kept at exactly 0, which would cause that form element to appear BEFORE the elements that didn't have a #weight defined (and thus received a #weight such as 0.002). Consider the following pseudo example: $form['game_title'] = array( '#type' => 'textfield', ... ); $form['game_description'] = array( '#type' => 'textarea', ... ); $form['game_format'] = filter_form(variable_get('game_format', NULL)); return $form; Here, we're not definiing weights on our two textfields. We then add an filter_form. The second parameter of the filter_form is $weight, which defaults to 0. After this $form hits form_builder, we have weights 0 (game_title), 0.001 (game_description), and 0 (filter_form) respectively. This is then sorted by weight, which causes filter_form (the third element in the array) to appear BEFORE game_description (0 is lighter than 0.001). The short lesson is: explicitly defining #weight 0 for a form element is probably a bad idea. This patch changes the default #weight of filter_form to NULL, instead of 0, and also removes any other explicit setting of #weight to 0 in core.
* - Patch #45349 by Morbus Iff: input filters aren't sorting correctly ↵Dries Buytaert2006-01-19
| | | | infForms API.
* - Patch #43325 by chx/drumm/merlinofchaos: critical bugfix: made editing ↵Dries Buytaert2006-01-18
| | | | comments work.
* - Patch #40755 by wtanaka: make the comment block themable.Dries Buytaert2006-01-17
|
* - Removed reference to comment moderation.Dries Buytaert2006-01-10
|
* - #43097: restore admin/comment tablesortSteven Wittens2006-01-08
|
* - Comment bug: anchor links should be specified using $fragment in url() and ↵Steven Wittens2006-01-06
| | | | drupal_goto().
* - Patch #40563 by chx, merlingofchaos, et al: bug fix: fixed the default ↵Dries Buytaert2006-01-05
| | | | comment settings on node sumbission forms.
* - Patch #39743 by merlinofchaos: critical bugfix: fixed comment ordering ↵Dries Buytaert2006-01-05
| | | | setting.
* - Patch #42971 by markus_petrux: input format not correctly shown when ↵Dries Buytaert2006-01-03
| | | | editing a comment.
* - Patch 41169 by Chris: got rid of expensvie object 2 array casts.Dries Buytaert2005-12-31
|
* - Patch #38999 by saerdna: There's no need that users with the "administer ↵Dries Buytaert2005-12-19
| | | | comments" role has to go via admin/comments to delete comments. this patch simply adds the delete link on each comment if you have administer comments role. "access administration pages" not needed; because if they not have it they can still delete from admin/comments.
* - Patch #41081 by billturner: fixed problem with the comment settings form.Dries Buytaert2005-12-15
|
* - Patch #34920 by Morbus/webchick/tangent: fixed order of form fields.Dries Buytaert2005-12-15
|
* - Patch #41133 by DriesK: as of PHP 5.1.0, strtotime() returns FALSE on ↵Dries Buytaert2005-12-15
| | | | | | failure instead of -1. Changed code to be compatible with all versions.
* - Patch #40631 by Chris Johnson: is_array() slower than isset() or empty().Dries Buytaert2005-12-14
|
* - Patch #28595 by Cvbge: fixed problems with bulk comment operations.Dries Buytaert2005-12-08
|
* - Patch #28595 by Jeremy: added support for bulk operations on comments.Dries Buytaert2005-12-07
|
* - Patch #39778 by chx: obliterate nodeapi op form in favor of the forms ↵Dries Buytaert2005-12-05
| | | | API's way of doing things. Tested with help from webchick.
* - Patch #36434 by assimonds: fixed problem with editing signatures.Dries Buytaert2005-12-03
|
* - Patch #39576 by chx: rename '_execute' to '_submit' and '#execute' to ↵Dries Buytaert2005-12-02
| | | | '#submit'.
* - Patch #39024 by Zen: comments that should be in the moderation queue get ↵Dries Buytaert2005-11-27
| | | | published.
* - Patch #37798 by Neil: fixed problem with node settings.Dries Buytaert2005-11-27
|
* - Patch #39013 by drumm: more logical naming of themeable functionsDries Buytaert2005-11-27
|
* - Patch #37798 by Neil: allow non-workflow form elements on the node type ↵Dries Buytaert2005-11-25
| | | | settings page.
* - Patch #38575 by Neil: fixed infinite loop in comment.module.Dries Buytaert2005-11-23
|
* - Patch #38491 by Neil: refactor comment viewing controls to _execute model.Dries Buytaert2005-11-22
|
* - Patch #35726 by asimmonds: post_process -> build_afterDries Buytaert2005-11-22
|
* - Patch #35726 by asimmonds/chx: converted the comment module to the forms ↵Dries Buytaert2005-11-21
| | | | API's _execute model.