summaryrefslogtreecommitdiff
path: root/modules/node.module
Commit message (Collapse)AuthorAge
* #57956: Redirect after node deletionSteven Wittens2006-04-09
|
* #52710, fix node timestamp for admin users, patch by hunmonk.Gerhard Killesreiter2006-04-08
|
* - #55898: Generic, permissive admin XSS/HTML filtering for mission/footer/...Steven Wittens2006-04-07
| | | | - Clean up some raw output
* #56911, advanced search broken, patch by Zen.Gerhard Killesreiter2006-04-02
|
* #56457: hook_search() form API conversionSteven Wittens2006-03-30
|
* #56105, remove title validation, already enforced by #required, patch by MosheGerhard Killesreiter2006-03-27
|
* #53348, Handling of deleted/blocked user accounts, patch by jreyero and ZenGerhard Killesreiter2006-03-26
|
* #55922, forgotten global $user, patch by singularoGerhard Killesreiter2006-03-26
|
* #55632, After deleting the last revision of a node, you're sent to an ↵Gerhard Killesreiter2006-03-26
| | | | invalid path, patch by dww
* #55550, if editing a node, node author changes to user editing it, patch by ↵Gerhard Killesreiter2006-03-25
| | | | merlinofchaos
* #54519, remove old bookmarklet code. Use prepopulate.module, patch by buddaGerhard Killesreiter2006-03-24
|
* #45988, Nodes with menu items bypass node permissions systemGerhard Killesreiter2006-03-20
| | | | patch by chx
* #45988, Nodes with menu items bypass node permissions system, patch by chx.Gerhard Killesreiter2006-03-20
|
* -bug #51522 by m3avrck, node teasers are emptyNeil Drumm2006-03-09
|
* #43032, Can't move forum topics created by anonymous (Authored by not set), ↵Gerhard Killesreiter2006-03-09
| | | | patch by Cvbge.
* #52586, node preview broken with php5, patch by gregglesGerhard Killesreiter2006-03-09
|
* #53012, make "Create new revision" respect node type settings, patch by ZenGerhard Killesreiter2006-03-08
|
* - Patch #51522 by paddy: break at beginning doesn't workDries Buytaert2006-03-07
|
* - #49405: Minor advanced search UI/code tweaksSteven Wittens2006-02-28
|
* - #51110: Make search results page more flexibleSteven Wittens2006-02-28
|
* #44129, patch by ZenGerhard Killesreiter2006-02-27
|
* - Patch #51189: fixed submit redirects.Dries Buytaert2006-02-26
|
* - Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.)Dries Buytaert2006-02-21
|
* - Patch #50219 by pz: removed some redundant code.Dries Buytaert2006-02-21
|
* - Patch #50219 by pz: removed death code.Dries Buytaert2006-02-20
|
* - Patch #50105 by chx: simplified some code.Dries Buytaert2006-02-19
|
* - Patch #44298 by DriesK: prevent unaccessible links from being generated.Dries Buytaert2006-02-19
|
* - #35073: Admin/node category filter not workingSteven Wittens2006-02-14
|
* - Patch #48622 by adrian: remove drupal_goto from _submit functions.Dries Buytaert2006-02-10
|
* - Patch #47406 by Zen: menu sorting shouldn't be case insensitive.Dries Buytaert2006-02-09
|
* - Patch #43622 / #46627 by markus: 'delete the selected posts' operation on ↵Dries Buytaert2006-02-09
| | | | admin/node doesn't work.
* - Patch #48564 by JonBob: grammar fix.Dries Buytaert2006-02-09
|
* - Node revisions 404/403 handling called drupal_not_found() twice.Steven Wittens2006-02-08
|
* - Patch #48021 by Zen: removed unused variable.Dries Buytaert2006-02-06
|
* - Patch #46933 by Gerhard: moderated nodes are not indexed.Dries Buytaert2006-02-01
|
* - Patch #46827 by wulff: fixed incorrect links.Dries Buytaert2006-01-29
|
* - Patch #46705 by killes: don't use array_merge.Dries Buytaert2006-01-29
|
* - Modified patch #37754 by Thomas: made the status message show up.Dries Buytaert2006-01-24
|
* - 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.
* - #42277: Make node search indexing more robust against bad nodes and timeouts.Steven Wittens2006-01-18
|
* - Patch #45206 by markus: attempt at making the node filters somewhat ↵Dries Buytaert2006-01-18
| | | | translatable.
* - Patch #45259 by chx/drumm: cast to object required.Dries Buytaert2006-01-18
|
* - Patch #42072 by m3avrck: more improvements to the node revesion overview ↵Dries Buytaert2006-01-17
| | | | screen.
* - Patch #42072 by m3avrck: improved the revision overview screen.Dries Buytaert2006-01-17
|
* - Critical feature #40670: made the form array accessible.Dries Buytaert2006-01-17
|
* - Extended the form description for clarity.Dries Buytaert2006-01-14
|
* - Patch #42886 by chx: critical feature: allow modules to be reordered.Dries Buytaert2006-01-08
|
* - Patch #42955 by Cvbge: critical bugfix: users can't create new content.Dries Buytaert2006-01-06
|
* - #41940: Locale string search broken in some cases (and remove some ↵Steven Wittens2006-01-05
| | | | | | inappropriate db_escape_string() usage) - #43491: Missing drupal_goto() after saving settings