summaryrefslogtreecommitdiff
path: root/includes
Commit message (Collapse)AuthorAge
* - Patch by Jeremy to fix a module loading bug:Dries Buytaert2002-11-29
| | | | | | | | | - module.inc: + added call to _init for all modules - statistics.module: + added statistics_init() + moved all global actions into statistics_init()
* - Fixed small glitch in drupal_goto(): somethimes a "&" got appended. PatchDries Buytaert2002-11-29
| | | | by Marco.
* - Applied Ax's pager patch: includes documentation (rewrote it somewhat) and twoDries Buytaert2002-11-26
| | | | | bugfixes; one that makes taxanomy based paging work (eg. index.php?and=2,3) and one that kills a warning when the query returns no records.
* - Added some comments/explanation wrt to the "$db_url" settings; this seemedDries Buytaert2002-11-26
| | | | to cause problems/confusion.
* - SID will now only be appended when session.use_trans_sid is set. PatchDries Buytaert2002-11-21
| | | | by Kjartan.
* - Don't display "1" when there is only one page.Dries Buytaert2002-11-18
|
* - changing theme patch. Now Drupal will init the $this->path automatically.Kjartan Mannes2002-11-17
|
* - changing the sorting algorithm in module_list so it is case insensitive.Kjartan Mannes2002-11-17
|
* 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.
* - made the themes path aware. If your theme creates a constructor function itKjartan Mannes2002-11-16
| | | | will now be passed the filename as the first parameter.
* - Small cosmetic change. Patch by Natrak.Dries Buytaert2002-11-10
|
* - Fixed db_query_range() in PEAR database abstraction layer. Patch by James.Dries Buytaert2002-11-09
|
* - Oops. Braino.Dries Buytaert2002-11-09
|
* - Oops. The db_query_range() query got added twice.Dries Buytaert2002-11-09
|
* - Added check to see whether $items is initiliazed. Thanks James.Dries Buytaert2002-11-09
|
* - Added a db_query_range function. Patch by Natrak, slightly modified.Dries Buytaert2002-11-09
|
* - Applied Moshe's "theme head" patch:Dries Buytaert2002-11-09
| | | | | | | "This patch to theme.inc adds the ability for modules to insert HTML into the <HEAD> section of all web pages. The additional modules in this directory [ed: blog.module] demonstate possible uses for the new _head() hook."
* * 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.
* Patch by Natrak:Dries Buytaert2002-11-08
| | | | | | | | | - Modules and themes now use the same functions to find and administer files. - Modules can now be placed in sub-directories. - Theme descriptions can no longer be edited. This will be handled by Dries' theme_conf patch. - Update required to keep old modules enabled.
* - removing whitespace (+testing still).Kjartan Mannes2002-11-06
|
* - 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 } }
* - Killed a warning. Reported by ax.Dries Buytaert2002-10-24
|
* - Made it possible to connect to mysql databases running on non-standardDries Buytaert2002-10-23
| | | | ports. Patch by Alastair.
* - Wrapped some hardcoded colors in "theme_invoke()"s; we can still createDries Buytaert2002-10-22
| | | | | | | | a drupal_error() later on but I think we better get used to theme_invoke(). - Fixed translation bug. Patch by Moshe. - Fixed PHP warning. Patch by ax.
* . 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
* - removed function module_rehash().Kjartan Mannes2002-10-17
| | | | | - updated database dump. - removed tables modules, layout and referrer (don't forget to backup!).
* - Committed Jeremy's incarnation of the statistics module. Last minutesDries Buytaert2002-10-13
| | | | | | | | | | | | | | | changes include: * a couple of coding style changes, renamed some "stats" into "statistics", etc. * removed the "Who's online" block from the user module. * added db_affected_rows() to the resp. database abstraction layers and made the statistics module use db_affected_rows() instead. * added update logic to "update.php".
* - 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-30
| | | | array. Thanks Moshe. (Didn't I commit this already?)
* - fixed a bug in module_invoke_all , it will now also add 0's to the resultKjartan Mannes2002-09-27
| | | | array. Thanks Moshe.
* - Commited Marco's new comment module and forum module!!!Dries Buytaert2002-09-15
|
* - adding doctype to basic theme.Kjartan Mannes2002-09-11
| | | | - some minor changes to clean up var initialization.
* - removing the "No valid themes enabled" warning.Kjartan Mannes2002-09-08
|
* - Fixed function prototype of db_error(). Patch by James.Dries Buytaert2002-08-26
| | | | One-liners are great! :)
* - Applied a (modified) version of Marco's SQL sequence patch.Dries Buytaert2002-08-20
|
* - Reverted module.inc to the old module_invoke() function.Dries Buytaert2002-08-15
|
* - "module_invoke()" and "module_invoke_all()" can now be called with anyDries Buytaert2002-08-14
| | | | number of arguments. Patch by Gerhard.
* - 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
|
* - removing the drupal module as always loaded.Kjartan Mannes2002-06-27
|
* - Added the improved db_query() function with timings from Marco's sandbox.Dries Buytaert2002-06-23
|
* - Added the theme_invoke() function from Moshe's sandbox.Dries Buytaert2002-06-23
|
* - Let the blocks itself take care of translating their titles. Patch byDries Buytaert2002-06-20
| | | | Marco.
* - cosmetics mostly.Kjartan Mannes2002-06-15
|
* - added some missing title attributs to links.Kjartan Mannes2002-06-14
|
* - adding missing $bacground/$foreground variables.Kjartan Mannes2002-06-12
|
* - adding descriptions to modules (thanks Joe + Scott).Kjartan Mannes2002-06-01
| | | | | | | | | | - fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update.
* - Added missing translations and the like.Dries Buytaert2002-05-31
|