summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Patch #44828 by chx: fixed incorrect return value.Dries Buytaert2006-01-23
|
* - Patch #45729 by markus, jvandyk, moshe: fixed problem with permission ↵Dries Buytaert2006-01-23
| | | | checking.
* - Patch #44828 by chx/Crell: make sure the url/path is properly initialized ↵Dries Buytaert2006-01-23
| | | | in statistics_exit().
* - Patch #45854 by Jaza: fixed problem with menu_rebuild().Dries Buytaert2006-01-23
|
* - #40515: PHP 5.1.1+ does not recognize \{Steven Wittens2006-01-23
|
* - Remove left-over moderation tables from UTF-8 updateSteven Wittens2006-01-22
|
* - #44939: Fix Unicode autocomplete in IESteven Wittens2006-01-22
|
* - Patch #45320 by Zen: improved usability of off-line mode.Dries Buytaert2006-01-22
|
* - Patch #45697 by fgm: removed some useless global.Dries Buytaert2006-01-22
|
* - Patch #33102 by Kobus et al: show dates properly.Dries Buytaert2006-01-22
|
* - Patch #44379 by Cvbge: removed default roles.Dries Buytaert2006-01-22
|
* - Patch #45706 by markus: keeping up with CSS improvements.Dries Buytaert2006-01-22
|
* - Patch #45684 by wtanaka: added missing ''sDries Buytaert2006-01-22
|
* - Patch #45747 by Cvbge: documentation improvement + added primary key that ↵Dries Buytaert2006-01-22
| | | | got lost
* - Patch #44101 by Cvbge: deleting a comment creates incorrect entry in ↵Dries Buytaert2006-01-22
| | | | node_comment_statistics.
* - Patch #45843 by markus: roles are no longer required.Dries Buytaert2006-01-22
|
* - #40515: Make utf-8 update PHP5 compatibleSteven Wittens2006-01-21
|
* - Patch #45228 by m3avrck: fixed aggregator CSS.Dries Buytaert2006-01-21
|
* - Patch #44379 by Moshe: code improvements: always grant the 'authenticated ↵Dries Buytaert2006-01-21
| | | | user' role to authenticated users. Fixed glitch with udpate path.
* - #40515: Ensure UTF-8 character set on the database side (and include ↵Steven Wittens2006-01-21
| | | | upgrade path for incorrectly set up databases)
* - Patch #42137 by Richard: deleting non existent user blocks the whole ↵Dries Buytaert2006-01-20
| | | | drupal site.
* - Patch #45380 by Neil: usability improvement: disable anonymous commenting ↵Dries Buytaert2006-01-20
| | | | options when anonymous people can't comment.
* - Added .Dries Buytaert2006-01-20
|
* - Patch #45451 by wtanaka: added explanation for the red star.Dries Buytaert2006-01-20
|
* - Patch #40849 by wtanaka and Richard: killed some menu.inc warnings/notices.Dries Buytaert2006-01-20
|
* - Patch #45228 and patch #45025 by m3avrck and Uwe: aggregator module ↵Dries Buytaert2006-01-20
| | | | HTML/CSS cleanups.
* - 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 #45312 by Robin and Zen: made theme_user_list() more like ↵Dries Buytaert2006-01-20
| | | | theme_item_list(), made it robust for empty lists.
* - Patch #27884 by gordon: js addLoadEvent not working.Dries Buytaert2006-01-20
|
* - Patch #45281 by chx: made categories with forum topics work again.Dries Buytaert2006-01-19
|
* - Patch #45281 by flevour/chx: fixed problem with categories not being set ↵Dries Buytaert2006-01-19
| | | | properly validated.
* - Patch #45446 by jakeg: don't generate empty >>Dries Buytaert2006-01-19
|
* - Patch #45336 by Ber: bugfix: removed obsolete check_plain() check causing ↵Dries Buytaert2006-01-19
| | | | & problems.
* - Patch #45365 by chx: critical bugfix: Fix and simplify selection options.Dries Buytaert2006-01-19
|
* - Patch #39430 by Jaza and Richard: code improvements: improved separation ↵Dries Buytaert2006-01-19
| | | | between UI and logic.
* - 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 #45281 by flevour/chx: fixed problem with categories not being set ↵Dries Buytaert2006-01-18
| | | | properly on editing.
* - Patch #45209 by markus et al: added some missing t() functions.Dries Buytaert2006-01-18
|
* - Patch #45301 by Morbus: corrected the weight of form item titles of nodes.Dries Buytaert2006-01-18
|
* - Patch #44011 by Souvent22 et al: critical bugfix: make private downloads ↵Dries Buytaert2006-01-18
| | | | work again.
* - Patch #45206 by markus: attempt at making the node filters somewhat ↵Dries Buytaert2006-01-18
| | | | translatable.
* - Patch #45224 by jvandyk: improved PHPdoc comments. Corrected spelling, ↵Dries Buytaert2006-01-18
| | | | improved grammar.
* - Modified patch #45214 by markus: don't generate empty breadcrumb div.Dries Buytaert2006-01-18
|
* - Patch #43325 by chx/drumm/merlinofchaos: critical bugfix: made editing ↵Dries Buytaert2006-01-18
| | | | comments work.
* - 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
|
* - Patch #42088 by Cvbge: fixed problem with input formats gettin lost when ↵Dries Buytaert2006-01-17
| | | | upgrading.
* - Patch #45041 by markus: rand() -> mt_rand() + removed deprecated comments.Dries Buytaert2006-01-17
|