diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-12 21:25:42 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-12 21:25:42 +0000 |
commit | 2ff32224580139f021eed6ac2eff5b05bb709ff7 (patch) | |
tree | ea246281cdb009ee55c128405909f8a2d7643916 /update.php | |
parent | e2b5cb38e333cfc3cba1428f3d6076a1e602507e (diff) | |
download | brdo-2ff32224580139f021eed6ac2eff5b05bb709ff7.tar.gz brdo-2ff32224580139f021eed6ac2eff5b05bb709ff7.tar.bz2 |
- Fixed translation bugs with statistics module. Patch by Gabor.
- Removed 'homepage' field from user table. Patch by Gabor.
- Added 'real name' field to the profile module. Patch by Gabor.
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 4f2c27fd2..42fd1efdc 100644 --- a/update.php +++ b/update.php @@ -55,7 +55,8 @@ $mysql_updates = array( "2003-09-09" => "update_63", "2003-09-10" => "update_64", "2003-09-29" => "update_65", - "2003-09-30" => "update_66" + "2003-09-30" => "update_66", + "2003-10-11" => "update_67" ); function update_32() { @@ -502,6 +503,10 @@ function update_66() { } } +function update_67() { + update_sql("ALTER TABLE users DROP homepage"); +} + /* ** System functions */ |