diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-03-05 20:15:17 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-03-05 20:15:17 +0000 |
commit | e3d2c46f04b2d510e60a3266f2b3bc2e4550eb85 (patch) | |
tree | 1cfc69a63a182f2e60fdbc9c0ea9a1fbafc9bdd5 /update.php | |
parent | f8372fa3067ffb12fbfa944c2f0048646796d4bd (diff) | |
download | brdo-e3d2c46f04b2d510e60a3266f2b3bc2e4550eb85.tar.gz brdo-e3d2c46f04b2d510e60a3266f2b3bc2e4550eb85.tar.bz2 |
- applied search patch.
- added who is online block.
- made weblog module more configurable.
- users may now delete their own accounts (Feature #8)
- users may now request a password using email address *or* username.
formerly required both items to match an account which was onerous.
- the link to request a new password is now presented whenever a user
fails login.
- there is now a confirmation message after submitting edits to your
user information.
- error messages in user.module may now be stylized by themes.
- <hook>_form has a $param setting you can fill with form parameters.
- improved wording for a few config settings.
- fixed various non-coding standard things.
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 31899188f..9a22969c1 100644 --- a/update.php +++ b/update.php @@ -46,7 +46,8 @@ $mysql_updates = array( "2002-01-17" => "update_19", "2002-01-27" => "update_20", "2002-01-30" => "update_21", - "2002-02-19" => "update_22" + "2002-02-19" => "update_22", + "2002-03-05" => "update_23" ); // Update functions @@ -332,6 +333,10 @@ function update_22() { update_sql("ALTER TABLE cache MODIFY data MEDIUMTEXT;"); } +function update_23() { + update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno int(10) unsigned default NULL, type varchar(16) default NULL, count int(10) unsigned default NULL, KEY lno (lno), KEY word (word);"); +} + /* ** System functions */ |