summaryrefslogtreecommitdiff
path: root/modules/forum.module
Commit message (Collapse)AuthorAge
* #64280: Renamed from forum.module to forum/forum.moduleDries Buytaert2006-07-12
|
* #49299 by wtanaka, properly break wordsNeil Drumm2006-07-11
|
* - Patch #72284 by me:Dries Buytaert2006-07-10
| | | | | + reorganized ?q=admin/settings + deprecated the _settings hook
* - Patch #72204 by nedjo: upper-cased all TRUE/FALSE/NULL constants.Dries Buytaert2006-07-05
|
* #71925 by Steven, remove # prefix from link array keys.Neil Drumm2006-07-04
|
* #65024 by killes, remove an extra condition.Neil Drumm2006-06-12
|
* - Patch #67146 by webchick: make sure that the forum vocabulary shows up first.Dries Buytaert2006-06-06
|
* - Patch #18260 by Morbus: fixed taxonomy links.Dries Buytaert2006-05-29
|
* - Patch #18260 by Ber, m3averck et al: allow overriding of links returned by ↵Dries Buytaert2006-05-18
| | | | modules
* - Patch #62350 by hunmonk: fixed problem with deleting forum containers.Dries Buytaert2006-05-08
|
* #61802 by Zen, Double spaced sentences clean upNeil Drumm2006-05-07
|
* #5371, drupal_get_destination, pager and tablesort array handling, patch by ↵Gerhard Killesreiter2006-04-13
| | | | Steven
* - #55898: Generic, permissive admin XSS/HTML filtering for mission/footer/...Steven Wittens2006-04-07
| | | | - Clean up some raw output
* #40664, adding new forum topic, forum not pre-selected in pull down menu., ↵Gerhard Killesreiter2006-04-06
| | | | fix by Jonas Kvarnstrom, patch by drumm
* - #57523: Make taxonomy delete vocabulary consistent with other taxonomy ↵Steven Wittens2006-04-06
| | | | hook ops
* - Make forum_hot_topic scale a bit more logicalSteven Wittens2006-04-06
|
* #28625, Forum vocabulary does not handle standard vocabulary features ↵Gerhard Killesreiter2006-03-31
| | | | correctly, removed these features by means of formapi, patch by profix898, with some love by dopry and chx
* #56105, remove title validation, already enforced by #required, patch by MosheGerhard Killesreiter2006-03-27
|
* #55805, missing {}, patch by CvbgeGerhard Killesreiter2006-03-25
|
* #54098, forum "last post" column show oldest, not most recent, patch by Zen.Gerhard Killesreiter2006-03-24
|
* #54910, Forum and taxonomy term delete work only superficially, patch by ZenGerhard Killesreiter2006-03-23
|
* #51635, Moving forum post leaving shadow copy results in warning, patch by ↵Gerhard Killesreiter2006-03-08
| | | | Zen/webchick
* - Patch #51850 by chx, webchick et al: fixed various problems with ↵Dries Buytaert2006-03-08
| | | | db_rewrite_sql, made db_rewrite_sql slightly more robust.
* - Patch #52850 by Zen: fapi conversion + minor fixesDries Buytaert2006-03-07
| | | | | | | * converts forum_admin to fapi. * handles invalid terms in hook_menu * adds comments, fixes typos etc. * reorganises functions a little bit - moves hook_menu to the top.. groups hooks together and forms together
* - Removing whitespaceDries Buytaert2006-03-03
|
* #51613, forum.module forms ignore proper form submission path, patch by ↵Gerhard Killesreiter2006-02-28
| | | | merlinofchaos
* - Patch #45850: it was impossible to create shadow topic. (Today's critical ↵Dries Buytaert2006-02-23
| | | | bugfix #2.)
* - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.)Dries Buytaert2006-02-21
|
* - Patch #46743 by Morbus: fixed double encoding issue.Dries Buytaert2006-02-15
|
* - Patch #46743 by m3avrck: clean up forum topic navigation. Bring it in ↵Dries Buytaert2006-02-10
| | | | line with book.module.
* - Patch #47691 by Cvbge: quickfix postgresqlDries Buytaert2006-02-09
|
* - Patch #47691 by wtanaka: performance improvement for _forum_topics_read.Dries Buytaert2006-02-09
|
* - Patch #47868 by wtanaka: performance improvement: active topics block ↵Dries Buytaert2006-02-04
| | | | selects an unused column.
* - Patch #46864 by stmind: fixed problem with node-level permissions and forums.Dries Buytaert2006-02-01
|
* - 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 #45281 by chx: made categories with forum topics work again.Dries Buytaert2006-01-19
|
* - Patch #45349 by Morbus Iff: input filters aren't sorting correctly ↵Dries Buytaert2006-01-19
| | | | infForms API.
* - Patch #45301 by Morbus: corrected the weight of form item titles of nodes.Dries Buytaert2006-01-18
|
* - Patch #33747 by Ber and Moshe: bugfix + code improvement: clean up some of ↵Dries Buytaert2006-01-10
| | | | the taxonomy loading code.
* - Removed global .Dries Buytaert2006-01-09
|
* - Patch 42591 by Simon/me: fixed problem with deleting forum and book revisions.Dries Buytaert2005-12-31
|
* - Patch #42705 by Cvbge: added missing format_plural().Dries Buytaert2005-12-31
|
* - Patch 41169 by Chris: got rid of expensvie object 2 array casts.Dries Buytaert2005-12-31
|
* - #42234: Use standardized feed icon for RSSSteven Wittens2005-12-29
|
* - Patch #42343 by wulff: added 2 missing t() functions.Dries Buytaert2005-12-26
|
* - Modified patch #40534: improved themability of forum icons (makes it ↵Dries Buytaert2005-12-11
| | | | possible to use animated gifs) + removed forum setting.
* - Patch #40664 by Gerhard: assign default forum when adding a forum topic ↵Dries Buytaert2005-12-10
| | | | from within a forum.
* - Patch #39598 by Gerhard: fixed problem with taxonomy terms not being selected.Dries Buytaert2005-12-06
|
* - Patch #31323 by Gerhard: delete extra data when a revision is deleted.Dries Buytaert2005-12-05
|
* - 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.