summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Patch #19442 by chx: cache_set sometimes failed.Dries Buytaert2005-05-12
| | | | | TODO: this patch lets us clean up more code in code! Let's have a look at this ...
* - Added the ability to track page generation times in the statistics module.Dries Buytaert2005-05-12
| | | | | | (Made some improvements as per the suggestions in the issue.) - Added extended timer implementation.
* - Fixed a braino.Dries Buytaert2005-05-11
|
* - Patch #22531 by Morbus: the CHANGELOG for Drupal 4.5 claims that a URL ↵Dries Buytaert2005-05-10
| | | | alias of "rss.xml" for "node/feed" was added. This ONLY occurs in updates.inc however - if people grab a fresh 4.5 (or now, 4.6), they are never going to get this added alias. The attached patch adds this INSERT into the default database.* files, adds another update into the updates.inc (so that those who started with a fresh 4.5 or 4.6 will get it via update.php the next time around) and fixes some minor whitespace/style inconsistencies.
* - Patch #22307 by Robert: added missing ')'Dries Buytaert2005-05-10
|
* - Patch #21252 by baudolino: fixed upgrade path of locale_sources table change.Dries Buytaert2005-05-10
|
* - Fixed typo: $block->title -> $block->subject. Spotted by Morbus.Dries Buytaert2005-05-10
|
* - Fixing patch for aggregator block id fix.Steven Wittens2005-05-09
|
* - Patch #22319 by Ber: updated default database schems not to use Xtemplate ↵Dries Buytaert2005-05-08
| | | | any more.
* - Patch #22262 by Robert: removed extra comma from SQL query.Dries Buytaert2005-05-07
|
* - Patch #22264 by patryk: made a SQL query PostgreSQL compliant. Thanks Patryk.Dries Buytaert2005-05-07
|
* - User module improvements: added an 'access' column to the users-table toDries Buytaert2005-05-07
| | | | | | | | | | | | | keep track of the user's last access. In turn, this allowed me to: 1. Optimize the "Who's online" block. On drupal.org, the "Who's online" block requires 32 SQL queries. With this patch, only 2 queries are left (eliminated 30 SQL queries), and one of the two remaining queries became appr. 20 times faster. 2. Correct the "Last access" column in the user administration overview table. The presented data was not accurate, which led to the column being removed. You can now sort users by 'last access'.
* - #21429: Maximum upload file size was checked in bytes, not megabytes.Steven Wittens2005-05-07
|
* - #19621: More sensible status messages for forum admin ("created forum" ↵Steven Wittens2005-05-07
| | | | instead of "created term").
* - Line-break filter tag matching was not case-insensitive, so it didn't pick ↵Steven Wittens2005-05-07
| | | | up e.g. <PRE>
* - Line-break filter now also ignores <style> (already ignored <pre> and ↵Steven Wittens2005-05-07
| | | | <script>).
* - Patch #22118 by Robin Monks: made file_transfer() more robust.Dries Buytaert2005-05-06
|
* - Patch #21397 by jjeff: fixed behavior of theme_image with regard to ↵Dries Buytaert2005-05-06
| | | | attributes.
* - Patch #22123 by Djun: fixed off by one error in printer-friendly book pages.Dries Buytaert2005-05-06
|
* - Patch #22127 by kbahey: fixed search box in PHPTemplate-based core themes.Dries Buytaert2005-05-06
|
* - #22154: Change : in aggregator block IDs to -, the colon is an illegal ↵Steven Wittens2005-05-06
| | | | character and causes problems in CSS.
* - OopsieSteven Wittens2005-05-06
|
* - #22154: Change : in aggregator block IDs to -, the colon is an illegal ↵Steven Wittens2005-05-06
| | | | character and causes problems in CSS.
* - Missing theme placeholder in forum delete message.Steven Wittens2005-05-06
|
* - Patch #15595 by Stefan and Djun: improved status messages.Dries Buytaert2005-05-05
| | | | | TODO: we should write down a couple guidelines for these document them in the PHPDoc code of drupal_set_message()! .
* - Patch #21221 by Robert: make status values in comment.module defined ↵Dries Buytaert2005-05-05
| | | | constants for readability.
* - Removed the user IDs from the users administration table and added a ↵Dries Buytaert2005-05-05
| | | | 'Member for' column.
* - Patch #21939 by Usability Poobah Chris: added missing </p> tag.Dries Buytaert2005-05-05
|
* - Added the PHPTemplate port of pushbutton.Dries Buytaert2005-05-05
|
* - Modified patch #21441 from puregin + RobinMonks: fixed some bugs ↵Dries Buytaert2005-05-05
| | | | surrounding the book administration and beautified some code making it more consistent with the rest of Drupal. :-)
* - Modified patch #21980 by willmoy: made form_group() accept HTML attributes.Dries Buytaert2005-05-05
|
* - Patch #21855 by TDobes: the recent commit of phptemplate caused a number ↵Dries Buytaert2005-05-05
| | | | | | | | | | | of problems for non-phptemplate themes. A patch is attached to address these issues. Changes include: * parsing of the primary/secondary links has been moved out of phptemplate and into theme_get_setting. * unnecessary and XHTML-invalidating duplicate div#help removed from themes/bluemarine/page.tpl.php (this is already generated by theme_help) * weird generation of the "edit primary/secondary links" messages removed from bluemarine and placed in theme.inc * unnecessary changes to themes/bluemarine/style.css rolled back (the phptemplate bluemarine had an older version of style.css than the one in core) * chameleon updated to work with new link scheme (passes links through theme_links)
* - Removed left-over .xtmpl file.Dries Buytaert2005-05-05
|
* - Rollback to previous version.Dries Buytaert2005-05-05
|
* - Removed the Xtemplate engine and added the PHPTemplate engine.Dries Buytaert2005-05-04
| | | | | - Converted the Bluemarine theme from XTemplate to PHPTemplate. - Moved the the Pushbutton theme and the Xtemplate engine to the contributions repository.
* - Patch by Robert: fixed typo in code comments.Dries Buytaert2005-05-03
|
* - Patch #21252 by patryk: fixed size of location field.Dries Buytaert2005-05-03
|
* - Patch #21751 by crunchywhelch: added missing check_plain() when emitting ↵Dries Buytaert2005-05-02
| | | | the <category>-tag in RSS feeds.
* - Patch #21445 by Goba: added missing t() function.Dries Buytaert2005-05-01
|
* - Bug #21452 reported by njivy: added missing return to tracker_user_page().Dries Buytaert2005-05-01
| | | | It did not return nor print its output.
* - Patch #21252 by patryk: increased the length of the location field in the ↵Dries Buytaert2005-05-01
| | | | locale_sources table.
* - Modified patch #21617 by Robin: added confirmation screen to delete ↵Dries Buytaert2005-05-01
| | | | profile fields. (I tidied up the coding style and fixed two typos.)
* - Patch #21686 by Robin Monks: added two missing t() functions.Dries Buytaert2005-05-01
|
* - Patch #21687 by faago: fixed boroken 'delete'-link on the book ↵Dries Buytaert2005-04-30
| | | | administration page.
* - Patch #21353 by chx: implemented PHP-mode for blocks.Dries Buytaert2005-04-30
|
* - Patch #21517 by Stefan and TDobes: theme system improvements.Dries Buytaert2005-04-30
|
* - Patch #21344 by Moshe: admin/user/create results in a blank pageDries Buytaert2005-04-30
|
* - #20910: Centralize print theme page fixesSteven Wittens2005-04-28
|
* - PGSQL Fix: missing columns in GROUP BY (aggregator news -> sources was ↵Steven Wittens2005-04-27
| | | | broken).
* - Missing parameter for variable_getSteven Wittens2005-04-27
|