summaryrefslogtreecommitdiff
path: root/includes/common.inc
Commit message (Collapse)AuthorAge
* - Committed Alastair Tse's getallheaders() patch.Dries Buytaert2003-01-31
|
* - Fixed bug introduced by Moshe's common.inc patch; posting content wouldDries Buytaert2003-01-27
| | | | cause "Array" to be displayed.
* - Applied Moshe's _exit patch (slightly modified).Dries Buytaert2003-01-26
| | | | - Fixed bug in system.module.
* - 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.
* - Tidied up a SQL query.Dries Buytaert2003-01-20
| | | | - Changed a "&" to a "&".
* - Enabled XML-RPC.Dries Buytaert2003-01-15
|
* - Fixed glitch in table_cell(). Spotted by Michael.Dries Buytaert2003-01-15
|
* - Added some more URL rewrite rules based on contributions from Gerhard.Dries Buytaert2003-01-12
|
* - Rewrite old-style URLs. Based on patch by Gerhard.Dries Buytaert2003-01-11
|
* - Fixed "clean URL" glitch in queue module. Patch by Ax.Dries Buytaert2003-01-11
| | | | - Small improvement to url(). Patch by Ax.
* - Added some isset()s to kill some "Undefined variable" warnings. Patch byDries Buytaert2003-01-09
| | | | Julio.
* - Fixed the pager. It might not be 100% correct, but it will work in 95%Dries Buytaert2003-01-09
| | | | of the cases.
* - Made sure the $links array is properly initialized before doing anDries Buytaert2003-01-08
| | | | | array_merge. According to Ori, this fixes a problem when using PHP as an ISAPI module with the Sambar server.
* - Added a few line breaks in the HTML emitted by the table() functionDries Buytaert2003-01-07
| | | | for better readability of the HTML code. Patch by Moshe.
* - Forgot to update the taxonomy links. Reported by Adam.Dries Buytaert2003-01-06
|
* - Fixed typo in watchdog(). Reported by Marco.Dries Buytaert2003-01-06
|
* - Clean URL patch.Dries Buytaert2003-01-06
|
* Typo ('tat' > 'that')Steven Wittens2003-01-05
|
* - Added an extra parameter to watchdog() which lets you specifiy an "action"Dries Buytaert2003-01-04
| | | | | | | | | or "operation" link. - Made the main page of the administration section show an overview of all watchdog entries with such action link. - Fixed typo in PostgreSQL database scheme.
* - Tidied up the use of check_output(). Might make rendering pages a bitDries Buytaert2002-12-31
| | | | snappier (performance improvement).
* - Bugfix: wrapped an RSS item's description in a check_output() to ensureDries Buytaert2002-12-31
| | | | proper markup.
* - Check input given to table rendering functions to avoid warning.Dries Buytaert2002-12-30
|
* - Added table rendering functions. As an example, I changed the node moduleDries Buytaert2002-12-29
| | | | to take advantage of it.
* - Made Drupal report an error when magic_quotes are disabled.Dries Buytaert2002-12-26
|
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* - Fixed bug in cache_clear_all(). Patch by Marco.Dries Buytaert2002-12-16
|
* - Forgot a tag.Dries Buytaert2002-12-15
|
* - Committed Marco's pager improvements.Dries Buytaert2002-12-14
| | | | - Fixed another annoyance with editing content.
* Applied patch by Natrak:Dries Buytaert2002-12-11
| | | | | | | | | | | | | - page_header() now adds Last-Modified and ETag http headers. - When running PHP as an Apache module page_header() will check the HTTP headers for conditional gets, and will only push the content when it fails. (Works for html and xml pages as they are all cached). Note: this is a PHP limitation, so until PHP makes it work for other web servers this won't work for them. - Added created field to cache database to hold the timestamp when the cache was created. - Changed cache_get() to return an object with ->data and ->created. - Update forum and locale modules.
* - Fixed typo. Reported by Kobus.Dries Buytaert2002-12-11
|
* - Fixed small glitch in drupal_goto(): somethimes a "&" got appended. PatchDries Buytaert2002-11-29
| | | | by Marco.
* - SID will now only be appended when session.use_trans_sid is set. PatchDries Buytaert2002-11-21
| | | | by Kjartan.
* Patch based on work of Kjartan:Dries Buytaert2002-11-17
| | | | | | | | | | | | | | - Changed cache API. - Fixed caching bug in comment.module. Odd this hasn't been reported yet. - Fixed caching bug in forum.module. - Fixed caching bug in system.module. - Fixed caching bug in block.module. - Simplified caching support in forum.module thanks to improved cache API.
* * Added Jeremy's pager:Dries Buytaert2002-11-09
| | | | | | | | | | | | | | | | | | | | | | | "This is a simple, generic pager for Drupal-CVS. It is designed to be easily themeable and expandable. The code is highly-commented to enhance readability." "Pagers are constructed by combining the provided pieces (all of which can be easily modified to display the text or image you prefer) into your custom pager." * Statistics module fixes by Jeremy: - removed superfluous check for existence of watchdog() - saving changes in admin page displays status and returns same page - no longer return 1971/01/01 in "view statistics" table - switched from "!=" to "<>" in SQL queries for ANSI-SQL compliance - switched from "MAX(timestamp) as timestamp" to "MAX(timestamp) as max_timestamp" moving towards ANSI-SQL compliance. * Added a "theme_item_list" function to format itemized lists. Also changed a couple of modules to take advantage of it. Makes for a more consistent UI.
* - Committed Marco's block rewrite:Dries Buytaert2002-10-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | + Blocks are not longer called if not rendered: major performance improvement. + Fixed some bugs (preview option was broken, path option was broken). + Removed "ascii"-type blocks. + Added permission to for "PHP blocks" + ... NOTES: + You'll want to run "update.php": ALTER TABLE blocks DROP remove; ALTER TABLE blocks DROP name; + You'll want to update your custom modules as well as the modules in the contrib repository. Block function should now read: function *_block($op = "list", $delta = 0) { if ($op == "list") { return array of block infos } else { return subject and content of $delta block } }
* . fixing what I did earlier. Not sure how that happend.Kjartan Mannes2002-10-20
|
* - applying patch from Ax. Bug #389:Kjartan Mannes2002-10-20
| | | | "Notice: Undefined variable: conf" in common.inc on line 779
* - changed format_date to allow W (week of year) in a custom format.Kjartan Mannes2002-10-04
|
* - fixed a bug in module_invoke_all , it will now also add 0's to the resultKjartan Mannes2002-09-27
| | | | array. Thanks Moshe.
* - An attempt to solve drupal_goto() in presence of session IDs.Dries Buytaert2002-08-08
|
* - Made it possible to store arrays in the variables table. Patch by Marco.Dries Buytaert2002-07-06
|
* - A variety of small localization updates. Patch by Ori Folger.Dries Buytaert2002-07-05
|
* - cosmetics mostly.Kjartan Mannes2002-06-15
|
* - added some missing title attributs to links.Kjartan Mannes2002-06-14
|
* - Added missing translations and the like.Dries Buytaert2002-05-31
|
* The default form action (request_uri) didn't escape HTML entities (such as ↵Steven Wittens2002-05-21
| | | | &amp;)
* - more coding style fixes.Kjartan Mannes2002-05-13
|
* - minor cleanupKjartan Mannes2002-05-12
|
* - Fixed typo.Dries Buytaert2002-05-12
|
* - applied Stevens link patch.Kjartan Mannes2002-05-12
| | | | | | - fixed block permissions. - fixed user admin page errors: http://www.drupal.org/node.php?id=173. - cleaned up common.inc a bit: removed format_info, path_img, field_merge.