summaryrefslogtreecommitdiff
path: root/update.php
Commit message (Collapse)AuthorAge
* - Fixed type: "form" -> "forum". Patch by Ulf Rompe.Dries Buytaert2003-01-16
|
* Patch by Marco:Dries Buytaert2003-01-15
| | | | | | | | | | | | | | | | | | - 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
* - Small improvement to the admin menu based on feedback from Michael.Dries Buytaert2003-01-14
|
* - Fixed links to admin page. Added help text.Dries Buytaert2003-01-07
|
* - Clean URL patch.Dries Buytaert2003-01-06
|
* - 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.
* - Fixed typo. Patch by Marco.Dries Buytaert2002-12-31
|
* Patch by Marco:Dries Buytaert2002-12-30
| | | | | | | | - 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)
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* - Make sure user names are unique.Dries Buytaert2002-12-16
|
* 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.
* - Some changes to the update.php script: revised the instructions a bit,Dries Buytaert2002-12-07
| | | | added some logic and a link to "upgrade 4.0.x to 4.1.x", etc.
* - Added missing query to change the session field from VARCHAR(32) to TEXT.Dries Buytaert2002-11-24
| | | | Reported by Bert Garcia.
* - Added Stefan's page module improvements.Dries Buytaert2002-11-20
| | | | [NOTE: the PostgreSQL database scheme needs updating.]
* 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.
* - blocks != boxes. Sorry :)Kjartan Mannes2002-10-26
|
* - making sure the type field is set right for blocks: 1 -> 0, 2 ->1.Kjartan Mannes2002-10-26
|
* - setting the right date for block update.Kjartan Mannes2002-10-26
|
* - 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 } }
* - removed function module_rehash().Kjartan Mannes2002-10-17
| | | | | - updated database dump. - removed tables modules, layout and referrer (don't forget to backup!).
* - fixing SQL queries. Do not append ; to SQL queries in PHP.Kjartan Mannes2002-10-15
| | | | | - fixing the statistics module SQL updates so they work for users that haven't used the statistics module before.
* - 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".
* - Made sure the sequence table is properly initialized for comments.Dries Buytaert2002-09-17
|
* - Commited Marco's new comment module and forum module!!!Dries Buytaert2002-09-15
|
* - Changed "$watchdog->message" from type "varchar(255)" to type "text".Dries Buytaert2002-08-26
| | | | | Patch by James. For sake of consistency, I updated the MySQL scheme and added a new update entry to "update.php".
* - Applied a (modified) version of Marco's SQL sequence patch.Dries Buytaert2002-08-20
|
* - Made the rating module and its SQL table ASNI compliant. Patch by jaa.Dries Buytaert2002-08-16
|
* - Added indices for the poll module. Patch by Marco.Dries Buytaert2002-08-11
|
* - feed table should have not null defined for refresh and timestamp.Kjartan Mannes2002-07-31
|
* - Update the existing variables.Dries Buytaert2002-07-07
|
* - Added some indices.Dries Buytaert2002-06-23
|
* - fixed the markup of the collapsed comment view settings.Kjartan Mannes2002-06-15
| | | | | - 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.
* - Removed non-existing theme from both update.php and database.mysql. PatchDries Buytaert2002-06-08
| | | | by Marco.
* - Changed some "default NULL"s to "default NOT NULL"s as this only works onDries Buytaert2002-06-06
| | | | | | | | | | | | | | | | | | 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,
* - 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.
* - tweaked password changes.Kjartan Mannes2002-05-20
| | | | | - changed the meta -> taxo to append terms instead of overwriting. - added more warnings to file.
* - Ran the code through 'scripts/code-clean.sh': removed trailing whitespaceDries Buytaert2002-05-20
| | | | (and possibly tabs).
* - attempting to fix tag -> tax conversion.Kjartan Mannes2002-05-19
|
* - bug fixKjartan Mannes2002-05-17
|
* Fixed TypoSteven Wittens2002-05-16
|
* - fixed old node abstracts being wiped.Kjartan Mannes2002-05-15
| | | | | - set the changed date to created to presev old sorting. - tweaking update order to result in better success rates.
* - convert meta tags to taxonomy.Kjartan Mannes2002-05-15
| | | | | | - added upgrade option which will enable modules and set some defaults. - additional links for added usability. - better instructions.
* - fixing some minor spacing issues.Kjartan Mannes2002-05-13
|
* - added notes to update.php which you will see before you can perform updates.Kjartan Mannes2002-05-11
| | | | | This should give clearer notice to people which update they have to run manually.
* - changed block, module and theme config pages to use checkboxes.Kjartan Mannes2002-05-11
| | | | | - coding style clean ups. - fixed taxonomy causing errors.
* - merged block and box modules. modules/box.module should be removedKjartan Mannes2002-05-02
| | | | | | | | | | or disabled as it will cause errors otherwise. - split status into status and custom. Status will turn the block on/off, and custom defined if the user can change the status. Requires sql update. - reintroduced user page to configure blocks.
* - enabling the security check again.Kjartan Mannes2002-05-02
|
* - fixing the update script so it can cleanly update from 3.x to 4.0.0 as long asKjartan Mannes2002-05-01
| | | | | | the manual stuff is done first. - NOTE: this will not update custom nodes. If you have any non standard nodes they will have to be updated seperately.
* - updated the updates.Kjartan Mannes2002-04-29
|
* - Rewrote role management, splitting the table in two. There are noDries Buytaert2002-04-28
| | | | | improvements right now, but this patch will help me adding support for taxonomy-based permissions. Contributed by Marco.