diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-06-11 13:24:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-06-11 13:24:10 +0000 |
commit | f66120de0576cd3b19ba329ed4976d7d9e6d7d6f (patch) | |
tree | b0ff12da4abfa1fb4d462a0d5b8743bd6da4f657 /article.php | |
parent | 44a566c8ca813e1f1d4f1d32500c73f812ab96fe (diff) | |
download | brdo-f66120de0576cd3b19ba329ed4976d7d9e6d7d6f.tar.gz brdo-f66120de0576cd3b19ba329ed4976d7d9e6d7d6f.tar.bz2 |
Updates:
* Various small changes to account.php including a SQL table movement:
'testusers' -> 'users'. As a result, user.class.php and article.php
needed patching as well. Hopefully I didn't break anyting. ;o)
Diffstat (limited to 'article.php')
-rw-r--r-- | article.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/article.php b/article.php index 320d627f0..0c14e9b7e 100644 --- a/article.php +++ b/article.php @@ -8,7 +8,7 @@ dbconnect(); if ($save) { - mysql_query("UPDATE testusers SET umode='$mode', uorder='$order', thold='$thold' where id='$user->id'"); + mysql_query("UPDATE users SET umode='$mode', uorder='$order', thold='$thold' where id='$user->id'"); $user->update(); } |