diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-11-29 07:18:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-11-29 07:18:51 +0000 |
commit | 5723fa689d4b63bb226266e9a8029a7c12ab4809 (patch) | |
tree | 34c3dc9d26318f6f8bf346f59c2a24f5a5a5c2e3 | |
parent | 0d4e75269a8208d607a8d94f3b02e39695801c19 (diff) | |
download | brdo-5723fa689d4b63bb226266e9a8029a7c12ab4809.tar.gz brdo-5723fa689d4b63bb226266e9a8029a7c12ab4809.tar.bz2 |
- fixes small SQL bug/warning
-rw-r--r-- | account.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/account.php b/account.php index 74ff88220..f08e51072 100644 --- a/account.php +++ b/account.php @@ -555,7 +555,7 @@ switch ($op) { account_page_edit(); break; default: - header("Location: diary.php?op=edit&name=$user->userid"); + header("Location: diary.php?op=add&name=$user->userid"); } break; default: |