summaryrefslogtreecommitdiff
path: root/lib/VNDB/DB/Users.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2008-11-11 23:02:56 +0100
committerYorhel <git@yorhel.nl>2008-11-11 23:02:56 +0100
commitbc369d000b6a4f005cd54f78fd240dc704a5a614 (patch)
treedacdaac118c7bdd381602185b19f33a02250a136 /lib/VNDB/DB/Users.pm
parent6c64733d77cc42d0a53e57ac2b169d43cde83acf (diff)
Removed users.flags and used two boolean columns instead
I wasn't planning on really touching the database in the rewrite, but oh well, I've always wanted to do this, anyway.
Diffstat (limited to 'lib/VNDB/DB/Users.pm')
-rw-r--r--lib/VNDB/DB/Users.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/DB/Users.pm b/lib/VNDB/DB/Users.pm
index fb458397..b17ad62f 100644
--- a/lib/VNDB/DB/Users.pm
+++ b/lib/VNDB/DB/Users.pm
@@ -53,7 +53,7 @@ sub dbUserEdit {
my %h;
defined $o{$_} && ($h{$_.' = ?'} = $o{$_})
- for (qw| username mail rank flags |);
+ for (qw| username mail rank show_nsfw show_list |);
$h{'passwd = decode(?, \'hex\')'} = $o{passwd}
if defined $o{passwd};