- Feb 19, 2003
-
-
Dries Buytaert authored
- Added missing footer logic. Patch by Ax.
-
- Feb 17, 2003
-
-
Dries Buytaert authored
- Theme options patch. See mailing list.
-
- Feb 16, 2003
-
-
Dries Buytaert authored
- Fixed off-by-one bug in the search module. Patch by Brad. (Still looking into the blog module patch.)
-
Kjartan Mannes authored
- 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.
-
Dries Buytaert authored
- Removed from the main repository. See 'contrib/modules/devel' for a more advanced development module maintained by Moshe.
-
- Feb 15, 2003
-
-
Dries Buytaert authored
- Documented the fact that the $base_url should not have a trailing slash. Requested by Kjartan. - Fixed at least 3 typos.
-
Kjartan Mannes authored
-
Dries Buytaert authored
- Made sure clean URLs are disabled by default. Reported by Moshe.
-
Dries Buytaert authored
- Everything is using theme("function") now instead of $theme->function().
-
- Feb 14, 2003
-
-
Dries Buytaert authored
- Clean URLs.
-
- Feb 13, 2003
-
-
natrak authored
-
- Feb 12, 2003
-
-
Kjartan Mannes authored
-
Kjartan Mannes authored
- Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc
-
natrak authored
- Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc
-
Dries Buytaert authored
-
- Feb 11, 2003
-
- Feb 09, 2003
-
-
Dries Buytaert authored
- Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Requi red for Drupal to work on new versions of PostgreSQL. Patch by James.
-
Dries Buytaert authored
- Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Required for Drupal to work on new versions of PostgreSQL. Patch by James.
-
Dries Buytaert authored
red for Drupal to work on new versions of PostgreSQL. Patch by James, backported to CVS by me.
-
Dries Buytaert authored
- Applied Alastair's date patch. - Removed all instances of '$user->nodes'. - Committed Moshe's taxonomy patch - minus the node_compact_list() bit. It needs a bit more thought/work. This patch changes the links of taxonomy pages/feeds so update your custom code and themes accordingly! Themes should now use "taxonomy_link("taxonomy terms", $node)" to get an array of taxonomy term links. The old construct is deprecated and should be changed. // old theme blob: if (function_exists("taxonomy_node_get_terms")) { foreach (taxonomy_node_get_terms($node->nid) as $term) { $terms[] = l($term->name, NULL, array(), "or=$term->tid"); } } // new theme blob: if (module_exist("taxonomy")) { $terms = taxonomy_link("taxonomy terms", $node); } // old URL: http://foo.com/index.php?or=1,2 // new URL: http://foo.com/?q=taxonomy/page/or/1,2
-
Dries Buytaert authored
- Fixed bug #1133: disabled comments are no longer shown. Thanks Gerhard.
-
Dries Buytaert authored
- Small improvements to help people getting started with the xtemplate theme.
-
- Feb 07, 2003
-
-
Dries Buytaert authored
- Fixed typo: forum2 -> forum.
-
- Feb 06, 2003
-
-
Dries Buytaert authored
- Updated the database scheme.
-
- Feb 02, 2003
-
-
Dries Buytaert authored
- Removed redundant code.
-
Dries Buytaert authored
- Patch by Moshe: sometimes modules display content composed by people who are not members of the site. Two examples are listhandler and import modules. There is no easy way for these modules to display the true author of the content. Usually, the content appears as if authored by Anonymous User. This 3 line patch enables modules to override the author name in their _view() hook.
-
Dries Buytaert authored
- Made it possible to print forum submission guidelines. Patch by Moshe.
-
- Feb 01, 2003
-
-
Dries Buytaert authored
-
Dries Buytaert authored
- Fixed typo: '$node->nide' -> '$node->nid'. Patch by Alastair.
-
Dries Buytaert authored
- Added some caching. Patch by Moshe.
-
Dries Buytaert authored
Patch by Ax: - Bad usage of css ID's: they may be used for a single element only, but were used as #node, #block, which can occur multiple times in a single page. - Moved HTML from theme to template - thats what templates are all about! - Added support for head() hook - Added support for diffentiating between boxes and blocks. - Typo: secundary -> secondary
-
- Jan 31, 2003
-
-
Dries Buytaert authored
-
- Jan 29, 2003
-
-
Dries Buytaert authored
- Bugfix; we got redirected to the wrong URL.
-
Dries Buytaert authored
- Bugfix: removed the call to comment_moderation.
-
Dries Buytaert authored
- Renamed "Allow HTML tags" to "Filter HTML tags" for clarity. Reported by Ax.
-
Dries Buytaert authored
- Corrected misplaced quote. Reported by Gerhard.
-
- Jan 27, 2003
-
-
Dries Buytaert authored
- Fixed bug introduced by Moshe's common.inc patch; posting content would cause "Array" to be displayed.
-
Dries Buytaert authored
- Fixed XHTML glitch in the sitemap. Thanks Moshe and Michael.
-
- Jan 26, 2003
-
-
Dries Buytaert authored
- Added sitemap feature to administration pages. Requested by various people including Michael and Moshe.
-
Dries Buytaert authored
- Applied Moshe's _exit patch (slightly modified). - Fixed bug in system.module.
-