Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Fixed typo in system module. Patch by Ax. | Dries Buytaert | 2003-03-04 |
| | |||
* | - Fix by Michael; see mailing list archives. Better now? | Dries Buytaert | 2003-03-03 |
| | |||
* | - Various system module improvements. Patch by Al. | Dries Buytaert | 2003-03-02 |
| | |||
* | - Fixed the "adminster" link at the bottom of every node's display. Patch | Dries Buytaert | 2003-03-02 |
| | | | | by Al. | ||
* | - This commit fixes URLs, and makes the "edit book outline" link at the bottom | Dries Buytaert | 2003-03-02 |
| | | | | of an "/admin/node/edit/n" page work properly. Patch by Al. | ||
* | - Grammar fix. Patch by Al. | Dries Buytaert | 2003-03-02 |
| | |||
* | - More improvements. | Dries Buytaert | 2003-02-27 |
| | |||
* | - Some fixes and improvements to the taxonomy module. Patch by Al. | Dries Buytaert | 2003-02-27 |
| | |||
* | - Bugfix: transparent session ID handling wasn't working properly with | Dries Buytaert | 2003-02-27 |
| | | | | drupal_goto(). Patch by Al. | ||
* | - Bugfix: there was an errant </a> tag with no opening tag. Patch by Al. | Dries Buytaert | 2003-02-27 |
| | |||
* | - Patch by Ax: "The $block->path setting, which <cite>lets you define ↵ | Dries Buytaert | 2003-02-27 |
| | | | | regular expressions to specify on which pages you want the specific blocks to be shown</cite> [1], has been disfunctional for some time (did it ever work at all?). one reason was the magic_quotes_gpc / stripslashes issue [2] - luckily, this got solved today. the other reason is a buggy implementation that a) compares the path to $PHP_SELF (which is the script name only, without any url params like "?op=view&id=13"; in the case of clean urls, worse, it is index.php always ...) instead of request_uri() (which does have these params and the proper value), and b) doesn't properly escape the regexp delimiter character in the expression ("/back\/slash/")." | ||
* | - Fixed some spelling mistakes. Patch by Al. | Dries Buytaert | 2003-02-27 |
| | |||
* | - Removed <?php ?> tags from documentation and made sure the important links are | Dries Buytaert | 2003-02-27 |
| | | | | at the top. Patch by Al. | ||
* | - Fixed bug in comment_num_replies() causing problems in the tracker module | Dries Buytaert | 2003-02-26 |
| | | | | (and potentially in the forum module). | ||
* | - Removed stripslashes(). See ↵ | Dries Buytaert | 2003-02-26 |
| | | | | http://lists.drupal.org/pipermail/drupal-devel/2003-February/022233.html. Patch by Ax. | ||
* | - Added menu icons/arrows. No (?)-icons yet. Patch by Al. | Dries Buytaert | 2003-02-26 |
| | |||
* | - Performance improvement. Patch by Zbynek. | Dries Buytaert | 2003-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. | ||
* | - Some bugfixes: | Dries Buytaert | 2003-02-26 |
| | | | | | + Made the sidebar stick to the right. + Corrected the size of the header-tags: they are in proportion now. | ||
* | - Small CSS improvement. | Dries Buytaert | 2003-02-26 |
| | |||
* | - Fixed some typos spotted by Al Maw. | Dries Buytaert | 2003-02-25 |
| | |||
* | - Fixed bug when an additional parameter is being passed to the callback. | Dries Buytaert | 2003-02-25 |
| | | | | | | | Patch by Zbynek. - Made the menu_tree() function emit CSS tags to identify which menus are expanded/collapsed/leafs. Patch Zbynek and Al Maw. | ||
* | - Removing the menu table: it is no longer used. | Dries Buytaert | 2003-02-24 |
| | | | | [TODO: update 'update.php'.] | ||
* | - Fixed small glitch with the padding of menu items. Patch by Zbynek. | Dries Buytaert | 2003-02-24 |
| | |||
* | - database.mysql cannot be run from within phpMyAdmin because of line | Dries Buytaert | 2003-02-24 |
| | | | | consisting of hyphens only. Patch by Zbynek. | ||
* | - Fixed some broken links. | Dries Buytaert | 2003-02-24 |
| | |||
* | - Fixed typo. Patch by Garym. (Something went wrong with my earlier commit.) | Dries Buytaert | 2003-02-23 |
| | |||
* | *** empty log message *** | Dries Buytaert | 2003-02-23 |
| | |||
* | - Some fixes and improvements as suggested by Gary. | Dries Buytaert | 2003-02-23 |
| | |||
* | - New menu houskeeping. Prototyped by Zbynek. | Dries Buytaert | 2003-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. | ||
* | - Small improvement to header width. Suggested by Ax. | Dries Buytaert | 2003-02-20 |
| | |||
* | - Bugfix: made the pager work when clean URLs are enabled. Patch by Ax. | Dries Buytaert | 2003-02-20 |
| | |||
* | - Added missing footer logic. Patch by Ax. | Dries Buytaert | 2003-02-19 |
| | |||
* | - Theme options patch. See mailing list. | Dries Buytaert | 2003-02-17 |
| | |||
* | - Fixed off-by-one bug in the search module. Patch by Brad. (Still looking | Dries Buytaert | 2003-02-16 |
| | | | | into the blog module patch.) | ||
* | - Added function node_invoke_all($hook, &$node, $op, $arg = 0). | Kjartan Mannes | 2003-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 more | Dries Buytaert | 2003-02-16 |
| | | | | advanced development module maintained by Moshe. | ||
* | - Documented the fact that the $base_url should not have a trailing slash. | Dries Buytaert | 2003-02-15 |
| | | | | | | Requested by Kjartan. - Fixed at least 3 typos. | ||
* | - Modifying user_validate_mail() to accept more e-mail addresses. | Kjartan Mannes | 2003-02-15 |
| | |||
* | - Made sure clean URLs are disabled by default. Reported by Moshe. | Dries Buytaert | 2003-02-15 |
| | |||
* | - Everything is using theme("function") now instead of $theme->function(). | Dries Buytaert | 2003-02-15 |
| | |||
* | - Clean URLs. | Dries Buytaert | 2003-02-14 |
| | |||
* | - fixing a typo in the RewriteRule | natrak | 2003-02-13 |
| | |||
* | - Applied patch from Axel: missing cid in comment search results. | Kjartan Mannes | 2003-02-12 |
| | |||
* | - Fixed blog.module to accept blog/name URLs as well as blog/id | Kjartan Mannes | 2003-02-12 |
| | | | | | | - Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc | ||
* | - Fixed blog.module to accept blog/name URLs as well as blog/id | natrak | 2003-02-12 |
| | | | | | | - Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc | ||
* | - Added temporary check around inclusion of "xmlrpc.inc". | Dries Buytaert | 2003-02-12 |
| | |||
* | - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html. | Dries Buytaert | 2003-02-11 |
| | |||
* | - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Requi | Dries Buytaert | 2003-02-09 |
| | | | | red for Drupal to work on new versions of PostgreSQL. Patch by James. | ||
* | - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. ↵ | Dries Buytaert | 2003-02-09 |
| | | | | Required for Drupal to work on new versions of PostgreSQL. Patch by James. | ||
* | - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Requi | Dries Buytaert | 2003-02-09 |
| | | | | red for Drupal to work on new versions of PostgreSQL. Patch by James, backported to CVS by me. |