summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - 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.
* - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. ↵Dries Buytaert2003-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. RequiDries Buytaert2003-02-09
| | | | red for Drupal to work on new versions of PostgreSQL. Patch by James, backported to CVS by me.
* - Applied Alastair's date patch.Dries Buytaert2003-02-09
| | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* - Fixed bug #1133: disabled comments are no longer shown. Thanks Gerhard.Dries Buytaert2003-02-09
|
* - Small improvements to help people getting started with the xtemplateDries Buytaert2003-02-09
| | | | theme.
* - Fixed typo: forum2 -> forum.Dries Buytaert2003-02-07
|
* - Updated the database scheme.Dries Buytaert2003-02-06
|
* - Removed redundant code.Dries Buytaert2003-02-02
|
* - Patch by Moshe: sometimes modules display content composed by people whoDries Buytaert2003-02-02
| | | | | | | 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.
* - Made it possible to print forum submission guidelines. Patch by Moshe.Dries Buytaert2003-02-02
|
* - Some updatesDries Buytaert2003-02-01
|
* - Fixed typo: '$node->nide' -> '$node->nid'. Patch by Alastair.Dries Buytaert2003-02-01
|
* - Added some caching. Patch by Moshe.Dries Buytaert2003-02-01
|
* Patch by Ax:Dries Buytaert2003-02-01
| | | | | | | | | | | | | | | - 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
* - Committed Alastair Tse's getallheaders() patch.Dries Buytaert2003-01-31
|
* - Bugfix; we got redirected to the wrong URL.Dries Buytaert2003-01-29
|
* - Bugfix: removed the call to comment_moderation.Dries Buytaert2003-01-29
|
* - Renamed "Allow HTML tags" to "Filter HTML tags" for clarity. Reported byDries Buytaert2003-01-29
| | | | Ax.
* - Corrected misplaced quote. Reported by Gerhard.Dries Buytaert2003-01-29
|
* - Fixed bug introduced by Moshe's common.inc patch; posting content wouldDries Buytaert2003-01-27
| | | | cause "Array" to be displayed.
* - Fixed XHTML glitch in the sitemap. Thanks Moshe and Michael.Dries Buytaert2003-01-27
|
* - Added sitemap feature to administration pages. Requested by variousDries Buytaert2003-01-26
| | | | people including Michael and Moshe.
* - Applied Moshe's _exit patch (slightly modified).Dries Buytaert2003-01-26
| | | | - Fixed bug in system.module.
* - Some first changes to the system.module; tidied up some code, preparationsDries Buytaert2003-01-26
| | | | | for theme settings and borrowing some ideas from Kjartan's long-awaited system.module patch.
* - Moved the filter()s back to the individual node modules as it used to be.Dries Buytaert2003-01-23
|
* - Tidied up XHTML. Patch by Ulf.Dries Buytaert2003-01-23
| | | | - Added missing t() function. Patch by Stefan.
* - Patch by Ulf: XHTML-ified the code.Dries Buytaert2003-01-21
|
* - Applied David's calendar patch: you can now configure at what day a weekDries Buytaert2003-01-21
| | | | start.
* - Applied Ori's format_plural() patch; see mailing list for details.Dries Buytaert2003-01-21
| | | | NOTE: some modules in the contributions repository might need to be updated.
* - A node's comment table is now being emitted by the new table renderingDries Buytaert2003-01-21
| | | | functions.
* - Tidied up some SQL queries.Dries Buytaert2003-01-21
|
* - Tidied up some SQL queries.Dries Buytaert2003-01-21
|
* - Corrected the documentation.Dries Buytaert2003-01-21
|
* Patch by Ax:Dries Buytaert2003-01-21
| | | | | | - 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.
* - Added a template driven theme.Dries Buytaert2003-01-20
|
* - Removed theme goofy from CVS.Dries Buytaert2003-01-20
|
* - Tidied up some SQL queries.Dries Buytaert2003-01-20
|
* - Tidied up some SQL queries.Dries Buytaert2003-01-20
|
* - Fixed bug #1041; sime queries where broken.Dries Buytaert2003-01-20
| | | | - Fixed problem with page links not being displayed.
* - Replaced "&" by "&". Patch by Ulf.Dries Buytaert2003-01-20
|
* - Tidied up a SQL query.Dries Buytaert2003-01-20
| | | | - Changed a "&" to a "&".
* - Bugfix: statistics.module can't give referrer statistics other than theDries Buytaert2003-01-16
| | | | external ones with clean URLs. Patch by Ulf Rompe.
* - Fixed type: "form" -> "forum". Patch by Ulf Rompe.Dries Buytaert2003-01-16
|
* Patch by Marco:Dries Buytaert2003-01-15
| | | | | | | | | | | | | | | | | | - forum: fixed link to new topic - forum: new topic shows default forum correctly - forum: first_new is back; the anchor didn't consider multiple pages - forum: use standard pager, needed some changes/fixes to pager.inc - forum: some cleanup - forum: taxonomy hook - renamed first_new to simply new - added an optional parameter to pager_query for the count query - used the optional count param for paging forum topics - internal change: moving a topic doesn't duplicate the node anymore but just changes the forum (term); no change in functionality, and shadow still works (suggested by Dries). This probably also made some queries somewhat lighter. - bug fixed: anonymous users always saw "n (n new)" in the replies column - updated pager help and moved from _help to phpdoc
* - Fixed bug/warning when an anonymous users tries to post a node. ReportedDries Buytaert2003-01-15
| | | | by David.
* - Enabled XML-RPC.Dries Buytaert2003-01-15
|
* - Fixed glitch in table_cell(). Spotted by Michael.Dries Buytaert2003-01-15
|
* - Small improvement to the admin menu based on feedback from Michael.Dries Buytaert2003-01-14
|
* - Small improvement to the admin menu based on feedback from Michael.Dries Buytaert2003-01-14
|