summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Getting rid of parameters which were never passed.Steven Wittens2004-08-10
|
* - Left-over debug statementSteven Wittens2004-08-10
|
* - #4266: When editing a book page, hide the page and its children from the ↵Steven Wittens2004-08-10
| | | | "Parent" selector to prevent circular relationships in the book hierarchy.
* - Patch by Al: improved the admin/help pages (first step).Dries Buytaert2004-08-10
|
* Added a note about the use of drupal_goto()/redirects.Steven Wittens2004-08-10
|
* Clarifying the comment.module change a bit.Steven Wittens2004-08-10
|
* #7646 and more:Steven Wittens2004-08-10
| | | | | - Users who have not edited their account yet would be reset to GMT rather than the sitewide timezone. - Users who chose GMT (zero timezone) on a site with a non-zero timezone as default would have incorrect timezone.
* - Patch #9884 by Bart Jansens:Dries Buytaert2004-08-09
| | | | | | | + The 'previous topic' / 'next topic' links skipped topic without comments (changed one inner join back to a left join). + The default order setting in admin/settings/forum had no effect. + The 'first new topic' link jumped to the first unread topic ever instead of the first unread topic since NODE_NEW_LIMIT. + This also removes the unused $offset param from theme_forum_display and theme_forum_topic_list, so any themes using these functions should be updated (i checked the core themes but none of them used these functions).
* - Patch #9865 by njivy: avoid mangling %'s in the profile SQL query.Dries Buytaert2004-08-09
|
* - Patch #9875 by njivy: call to taxonomy_overview() is missing in admin view.Dries Buytaert2004-08-09
|
* Tiny code cleanup in user.module.Steven Wittens2004-08-08
|
* - Patch #9866 by njivy: when the links are generated for each item in a ↵Dries Buytaert2004-08-08
| | | | list-type profile field, double quotes in the item name can break the link. To fix this, this patch gives drupal_specialchars() the ENT_QUOTES parameter to convert quotes into HTML entities. This fix is also applied to selection-type profile fields which can have the same problem.
* - Adding an update to convert old taxonomy URL aliases to new ones.Steven Wittens2004-08-07
|
* - Adding $id$Steven Wittens2004-08-07
|
* Cron.phpSteven Wittens2004-08-07
| | | | | - #1322: Adding a warning if the cron fails to complete. - Simplifying odd commenting syntax
* - #3606: Missing translations for user.module watchdogSteven Wittens2004-08-07
|
* - Patch #6760 by JonBob: refactored the taxonomy module URLs to be nicer, ↵Dries Buytaert2004-08-07
| | | | | | | | | | improved the code/Doxygen comments. As discussed before, the path "taxonomy/page/or/1,2" becomes "taxonomy/term/1+2" and the path "taxonomy/page/and/1,2" becomes "taxonomy/term/1,2". The most common case of listing nodes attached to a single term becomes simpler, since it doesn't require a meaningless "or" or "and". A depth of "0" is assumed, but a positive integer or "all" can be used. Feeds are available at "taxonomy/term/1+2/all/feed" and the like. This iteration of the patch also changes the structure of taxonomy_select_nodes(), since it was not following Drupal conventions. A handful of contrib modules call this function, and will need to be updated. Instead of passing in a $taxonomy object containing parameters for the function, the parameters are passed independently. This simplifies the code quite a bit. The queries were changed to only return node IDs for speed; all results from this function are passed through node_load() anyway, so the extra information returned was discarded. The AND query was also changed to avoid the strange trick and remove an extra query, at the expense of a table join per root term in the AND. This cleans up the code substantially while at the same time enabling the use of AND with a depth parameter. TODO: update contribution modules.
* - Made the taxonomy module use drupal_goto() to fix up the interaction behavior.Dries Buytaert2004-08-07
|
* Added an upgrade path for old URL aliases to node/view, book/view and ↵Steven Wittens2004-08-06
| | | | user/view. This is amongst other things required for old node aliases to appear in the node form.
* - Patch #9812 by Adrian: fixed some PostgreSQL/ANSI SQL compabitibilityDries Buytaert2004-08-06
| | | | problems created by the new comment and node access permissions code.
* - Patch #7968 by Adrian: use the complete URL as the cache ID to make Drupal'sDries Buytaert2004-08-06
| | | | caching work on virtual hosts.
* - Patch #9819 by JonBob: fixed XHTML bug - make sure the <div> is always closed.Dries Buytaert2004-08-06
|
* - Patch #9330: ucfirst() gives problem when used with multibyte charset.Dries Buytaert2004-08-06
| | | | Replaced the use of ucfirst() with a CSS-based solution.
* - Oopsie when committing.Steven Wittens2004-08-06
|
* - Cleaning up the rediculously long 'if' statement for checking block ↵Steven Wittens2004-08-06
| | | | | | visibility. - #9811: Remove session ID before matching block path
* #9810: PostgreSQL updates by Adrian.Steven Wittens2004-08-06
|
* #8154 - Default user timezone to site timezoneSteven Wittens2004-08-06
|
* - Patch #8523 by killes: avoid profile data being deleted when requesting a newDries Buytaert2004-08-05
| | | | password.
* - Patch by Jeremy: usability improvements for the statistics.module's GUI.Dries Buytaert2004-08-05
|
* - Patch #9794 by JonBob: a bug introduced late in the review process makes ↵Dries Buytaert2004-08-05
| | | | individual node views inaccessible to users who should have permission. This does not affect node listings, so was missed.
* - Patch #9775 by TDobes: consistency operation. Changed to "edit foo," ↵Dries Buytaert2004-08-05
| | | | "delete foo," and "view foo" links into simply "edit," "delete," and "view".
* - #6400 - Nicer arrows for pushbutton templateSteven Wittens2004-08-05
| | | | - Removing gAMA chunk from xtemplate logo.png for less to avoid more gamma issues.
* - Patch #9770 by killes: fixed typo in queue module.Dries Buytaert2004-08-04
|
* - Patch #9497 by gordon: made <!--break--> work even when the teaser lengthDries Buytaert2004-08-04
| | | | is set to unlimited and fixed up some code comments.
* - Patch #9768 by killes: admin/user/edit/$uid is no more, removed some ↵Dries Buytaert2004-08-04
| | | | left-overs.
* - Patch #9657: more intelligent theme() function. Hopefully, Adrian will beDries Buytaert2004-08-04
| | | | able to use this patch too.
* - Patch #7458 by killes: conditionally include xmlrpc.inc.Dries Buytaert2004-08-04
|
* Making the xtemplate logo background transparent to make the Safari gamma ↵Steven Wittens2004-08-04
| | | | bug less obvious.
* - Patch #9757 by Al: improved the aggregator help. Help texts should be to ↵Dries Buytaert2004-08-04
| | | | the point.
* - Patch #9740 by Bart: added missing {} for table prefixing.Dries Buytaert2004-08-04
|
* - Patch #7336 by TDobes: in various parts of Drupal, we use the title ↵Dries Buytaert2004-08-03
| | | | attribute for links to provide a slightly more detailed explanation as to the purpose of a link or where it goes.
* - Partial patch #9643 by Bart:Dries Buytaert2004-08-03
| | | | | + the confirmation before deleting a comment was missing a check_output. + after editing a comment, two pages were shown (two calls to theme('page',..)), replaced this by a drupal_goto.
* - Patch by Jeremy: statistics module improvements.Dries Buytaert2004-08-03
|
* - Simplified the block help a bit by removing some dated information. ItDries Buytaert2004-08-01
| | | | should be simplified more.
* - Fixed broken link + removed redundant form descriptions (there is no pointDries Buytaert2004-08-01
| | | | in repeating the title).
* - Patch by Junyor: fixed typo: 'peformed' -> 'performed'Dries Buytaert2004-08-01
|
* - Patch #9430, backported patch from JonBob: fixed typo: 'that that' -> 'that'Dries Buytaert2004-07-31
|
* - Patch #9654 by Bart: since the $category paramater was added to user_save,Dries Buytaert2004-07-31
| | | | update 80 (moving the profile fields to their own tables) no longer works.
* - Patch #9649 by JonBob: fixed a buglet in the recent book patch. It triedDries Buytaert2004-07-31
| | | | to set book breadcrumbs for nodes that weren't books.
* - Patch by Matt: fixed small typo.Dries Buytaert2004-07-31
|