summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* - Fixing typos.Kjartan Mannes2003-03-11
|
* - Fixed request 583. Patch by Al.Dries Buytaert2003-03-10
|
* - Fixed typo: maxumum -> maximum. Patch by Al.Dries Buytaert2003-03-10
|
* - Committed Ax' book patch to "fix" the "next/prev" navigation.Dries Buytaert2003-03-10
|
* - Fixing bug reported by Alastair Maw. My paranoia got a little bit too muchKjartan Mannes2003-03-10
| | | | apparently.
* - Fixed bug #1298 : Taxonomy: Edit term doesn't show parent and relatedKjartan Mannes2003-03-10
| | | | | | terms. - Added feature #1299 : Order of related terms and parent in taxonomy admin.
* - Added another security layer.Kjartan Mannes2003-03-10
| | | | - Modified some moderation logic to make it more workable.
* - Fixed log views so that the menu doesn't dissapear. (Note: don't use exit()Kjartan Mannes2003-03-09
| | | | in Drupal unless you really need to!)
* - Ahem , trailing spaces.Kjartan Mannes2003-03-09
|
* - Moved moderation logic back into node module.Kjartan Mannes2003-03-09
| | | | | | | | | | * After having a chat with Dries we have agreed on the logics (or more specifically he told me how its supposed to work). The queue module is just a method to make moderation public, but its not necessarily the only way. This brings the power back. - Minor interface tweaks (names, case changes, etc). - Fixed error that would show when you tried to view the profile of a blocked user.
* - Moved some block up to avoid the user module duplicating data.Dries Buytaert2003-03-09
|
* - Emit the menu after the actual content; this makes it possible to rebuildDries Buytaert2003-03-09
| | | | the menu when some action changed the system table.
* - Removing some trailing whitespace I forgot to clean up.Kjartan Mannes2003-03-09
|
* - Changed _nodeapi("conf") to _nodeapi("settings").Kjartan Mannes2003-03-08
| | | | | - Changed node settings page to use table(). - Minor code beautification here and there.
* - Bugfix to make parsing http://www.veganporn.com/syndicate-j.pl work.Dries Buytaert2003-03-08
| | | | Patch by Trent.
* - Renamed "form.admin" to "form admin".Kjartan Mannes2003-03-07
| | | | | | | | | | - Added node_admin_settings() to let users set node defaults. * Added _nodeapi("conf") - Modified form_checkbox() to unset options. (Modified the patch from Ax.) - Removed the _save() hook. - Fixed a logical flaw in field_get() and field_set() which would break moderation. - Moved some admin menus around and cleaned up some typos.
* - Removed the path_uri() function in favor of the $base_url variable andDries Buytaert2003-03-07
| | | | fixes a handful of bugs introduced by the clean URL patch.
* - Fixed bug in search.module: slashes where escaped twice.Dries Buytaert2003-03-06
|
* - Fixed broken URL in comment form. Patch by Ax.Dries Buytaert2003-03-06
|
* - Fixed the links in the admin menu. Patch by Ax.Dries Buytaert2003-03-05
|
* - Two small fixes.Dries Buytaert2003-03-04
|
* - Fixed typo: $node->tid -> $node->tid[].Dries Buytaert2003-03-04
|
* - Corrected coding style and fixed some "undefined index/variable" warnings.Dries Buytaert2003-03-04
| | | | Patch by Ax.
* - Fixed typo in system module. Patch by Ax.Dries Buytaert2003-03-04
|
* - Various system module improvements. Patch by Al.Dries Buytaert2003-03-02
|
* - Fixed the "adminster" link at the bottom of every node's display. PatchDries Buytaert2003-03-02
| | | | by Al.
* - This commit fixes URLs, and makes the "edit book outline" link at the bottomDries Buytaert2003-03-02
| | | | of an "/admin/node/edit/n" page work properly. Patch by Al.
* - Grammar fix. Patch by Al.Dries Buytaert2003-03-02
|
* - Some fixes and improvements to the taxonomy module. Patch by Al.Dries Buytaert2003-02-27
|
* - Bugfix: there was an errant </a> tag with no opening tag. Patch by Al.Dries Buytaert2003-02-27
|
* - Removed <?php ?> tags from documentation and made sure the important links areDries Buytaert2003-02-27
| | | | at the top. Patch by Al.
* - Fixed bug in comment_num_replies() causing problems in the tracker moduleDries Buytaert2003-02-26
| | | | (and potentially in the forum module).
* - Removed stripslashes(). See ↵Dries Buytaert2003-02-26
| | | | http://lists.drupal.org/pipermail/drupal-devel/2003-February/022233.html. Patch by Ax.
* - Performance improvement. Patch by Zbynek.Dries Buytaert2003-02-26
| | | | | | 1) Even when string is not translated, put it in the cache and save a query for each untranslated string. 2) When there is no cache, create one.
* - Fixed some typos spotted by Al Maw.Dries Buytaert2003-02-25
|
* - Fixed some broken links.Dries Buytaert2003-02-24
|
* - Fixed typo. Patch by Garym. (Something went wrong with my earlier commit.)Dries Buytaert2003-02-23
|
* *** empty log message ***Dries Buytaert2003-02-23
|
* - New menu houskeeping. Prototyped by Zbynek.Dries Buytaert2003-02-20
| | | | | | | | | | | | | | | | The following modules need updating: * glossary module * feed module (Breyten's version) * mailhandler module * notify module * project module * smileys module * admin module * style module * taxonomy_dhtml module To avoid unexpected problems menu_add() is deprecated (it will print an error message when used) and menu() should be used instead.
* - Theme options patch. See mailing list.Dries Buytaert2003-02-17
|
* - Fixed off-by-one bug in the search module. Patch by Brad. (Still lookingDries Buytaert2003-02-16
| | | | into the blog module patch.)
* - Added function node_invoke_all($hook, &$node, $op, $arg = 0).Kjartan Mannes2003-02-16
| | | | | | | | | | | | - Added a _nodeapi hook that in time will replace the _node hook. Trying to make as few changes to existing code as possible until the new api is stabilized. - Modified node_form() to add administration options from other modules using the _nodeapi hook. - Modified node_save() to fetch which fields should be saved to the node table from the _nodeapi hook. - Moved comment and queue options from node_form() and node_save() to the modules _nodeapi hooks.
* - Removed from the main repository. See 'contrib/modules/devel' for a moreDries Buytaert2003-02-16
| | | | advanced development module maintained by Moshe.
* - Modifying user_validate_mail() to accept more e-mail addresses.Kjartan Mannes2003-02-15
|
* - Everything is using theme("function") now instead of $theme->function().Dries Buytaert2003-02-15
|
* - Clean URLs.Dries Buytaert2003-02-14
|
* - Applied patch from Axel: missing cid in comment search results.Kjartan Mannes2003-02-12
|
* - Fixed blog.module to accept blog/name URLs as well as blog/idKjartan Mannes2003-02-12
| | | | | | - Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc
* - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html.Dries Buytaert2003-02-11
|
* - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. RequiDries Buytaert2003-02-09
| | | | red for Drupal to work on new versions of PostgreSQL. Patch by James.