- 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.
-
Dries Buytaert authored
- Some first changes to the system.module; tidied up some code, preparations for theme settings and borrowing some ideas from Kjartan's long-awaited system.module patch.
-
- Jan 23, 2003
-
-
Dries Buytaert authored
-
Dries Buytaert authored
- Added missing t() function. Patch by Stefan.
-
- Jan 21, 2003
-
-
Dries Buytaert authored
- Patch by Ulf: XHTML-ified the code.
-
Dries Buytaert authored
- Applied David's calendar patch: you can now configure at what day a week start.
-
Dries Buytaert authored
- Applied Ori's format_plural() patch; see mailing list for details. NOTE: some modules in the contributions repository might need to be updated.
-
Dries Buytaert authored
- A node's comment table is now being emitted by the new table rendering functions.
-
Dries Buytaert authored
-
Dries Buytaert authored
- Tidied up some SQL queries.
-
Dries Buytaert authored
- Corrected the documentation.
-
Dries Buytaert authored
Patch by Ax: - Removed the XML prolog from xtemplate.xtmpl because some browsers have difficulties with it and it's not required. see http://webstandards.org/learn/reference/prolog_problems.html. - Fixed the term link.
-
- Jan 20, 2003
-
-
Dries Buytaert authored
- Added a template driven theme.
-
Dries Buytaert authored
-
Dries Buytaert authored
- Tidied up some SQL queries.
-
Dries Buytaert authored
-
Dries Buytaert authored
- Fixed bug #1041; sime queries where broken. - Fixed problem with page links not being displayed.
-