- 15 Jan, 2003 1 commit
-
-
Dries authored
- 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
-
- 14 Jan, 2003 1 commit
-
-
Dries authored
- Small improvement to the admin menu based on feedback from Michael.
-
- 07 Jan, 2003 1 commit
-
-
Dries authored
- Fixed links to admin page. Added help text.
-
- 06 Jan, 2003 1 commit
-
-
Dries authored
- Clean URL patch.
-
- 04 Jan, 2003 1 commit
-
-
Dries authored
- Added an extra parameter to watchdog() which lets you specifiy an "action" 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.
-
- 31 Dec, 2002 1 commit
-
-
Dries authored
- Fixed typo. Patch by Marco.
-
- 30 Dec, 2002 1 commit
-
-
Dries authored
Patch by Marco: - rewrote taxonomy_get_tree() for improved performance and cleaner code - fixed a bug in _taxonomy_term_select() with multiple parents - added hooks in vocabulary and term insert, update and delete - fixed a bug in taxonomy_save_vocabulary() (cache_clear_all() was never called)
-
- 24 Dec, 2002 1 commit
-
-
Dries authored
- Refactored the administration pages.
-
- 16 Dec, 2002 1 commit
-
-
Dries authored
- Make sure user names are unique.
-
- 11 Dec, 2002 1 commit
-
-
Dries authored
Applied patch by Natrak: - 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.
-
- 07 Dec, 2002 1 commit
-
-
Dries authored
- Some changes to the update.php script: revised the instructions a bit, added some logic and a link to "upgrade 4.0.x to 4.1.x", etc.
-
- 24 Nov, 2002 1 commit
-
-
Dries authored
- Added missing query to change the session field from VARCHAR(32) to TEXT. Reported by Bert Garcia.
-
- 20 Nov, 2002 1 commit
-
-
Dries authored
- Added Stefan's page module improvements. [NOTE: the PostgreSQL database scheme needs updating.]
-
- 08 Nov, 2002 1 commit
-
-
Dries authored
Patch by Natrak: - 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.
-
- 26 Oct, 2002 4 commits
-
-
Kjartan authored
-
Kjartan authored
-
Kjartan authored
-
Dries authored
- Committed Marco's block rewrite: + 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 } }
-
- 17 Oct, 2002 1 commit
-
-
Kjartan authored
- updated database dump. - removed tables modules, layout and referrer (don't forget to backup!).
-
- 15 Oct, 2002 1 commit
-
-
Kjartan authored
- fixing the statistics module SQL updates so they work for users that haven't used the statistics module before.
-
- 13 Oct, 2002 1 commit
-
-
Dries authored
- Committed Jeremy's incarnation of the statistics module. Last minutes 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".
-
- 17 Sep, 2002 1 commit
-
-
Dries authored
- Made sure the sequence table is properly initialized for comments.
-
- 15 Sep, 2002 1 commit
-
-
Dries authored
- Commited Marco's new comment module and forum module!!!
-
- 26 Aug, 2002 1 commit
-
-
Dries authored
- Changed "$watchdog->message" from type "varchar(255)" to type "text". Patch by James. For sake of consistency, I updated the MySQL scheme and added a new update entry to "update.php".
-
- 20 Aug, 2002 1 commit
-
-
Dries authored
- Applied a (modified) version of Marco's SQL sequence patch.
-
- 16 Aug, 2002 1 commit
-
-
Dries authored
- Made the rating module and its SQL table ASNI compliant. Patch by jaa.
-
- 11 Aug, 2002 1 commit
-
-
Dries authored
- Added indices for the poll module. Patch by Marco.
-
- 31 Jul, 2002 1 commit
-
-
Kjartan authored
-
- 07 Jul, 2002 1 commit
-
-
Dries authored
- Update the existing variables.
-
- 23 Jun, 2002 1 commit
-
-
Dries authored
- Added some indices.
-
- 15 Jun, 2002 1 commit
-
-
Kjartan authored
- updated update.php and database.mysql disable a few more modules by default. Without the config options in place to disable things this might confuse users.
-
- 08 Jun, 2002 1 commit
-
-
Dries authored
- Removed non-existing theme from both update.php and database.mysql. Patch by Marco.
-
- 06 Jun, 2002 1 commit
-
-
Dries authored
- Changed some "default NULL"s to "default NOT NULL"s as this only works on recent MySQL versions. I included the diffs for review. update.php: - update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno in + update_sql("CREATE TABLE search_index (word varchar(50) default NOT NULL, ln database.mysql: - word varchar(50) default NULL, - lno int(10) unsigned default NULL, - type varchar(16) default NULL, - count int(10) unsigned default NULL, + word varchar(50) NOT NULL, + lno int(10) unsigned NOT NULL, + type varchar(16) default NULL, + count int(10) unsigned default NULL,
-
- 01 Jun, 2002 1 commit
-
-
Kjartan authored
- 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.
-
- 20 May, 2002 2 commits
- 19 May, 2002 1 commit
-
-
Kjartan authored
-
- 17 May, 2002 1 commit
-
-
Kjartan authored
-
- 16 May, 2002 1 commit
-
-
Steven Wittens authored
-
- 15 May, 2002 1 commit
-
-
Kjartan authored
- set the changed date to created to presev old sorting. - tweaking update order to result in better success rates.
-