summaryrefslogtreecommitdiff
path: root/lib/VNDB
diff options
context:
space:
mode:
Diffstat (limited to 'lib/VNDB')
-rw-r--r--lib/VNDB/DB/Users.pm2
-rw-r--r--lib/VNDB/Util/Auth.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/VNDB/DB/Users.pm b/lib/VNDB/DB/Users.pm
index 2f7d8e5c..85654180 100644
--- a/lib/VNDB/DB/Users.pm
+++ b/lib/VNDB/DB/Users.pm
@@ -29,7 +29,7 @@ sub dbUserGet {
);
my @select = (
- qw|id username c_votes c_changes c_tags hide_list|,
+ qw|id username c_votes c_changes c_tags|,
VNWeb::DB::sql_user(), # XXX: This duplicates id and username, but updating all the code isn't going to be easy
q|extract('epoch' from registered) as registered|,
);
diff --git a/lib/VNDB/Util/Auth.pm b/lib/VNDB/Util/Auth.pm
index 4394149f..b05c86f9 100644
--- a/lib/VNDB/Util/Auth.pm
+++ b/lib/VNDB/Util/Auth.pm
@@ -73,7 +73,7 @@ sub authInfo {
# a certain action.
sub authCan {
my(undef, $act) = @_;
- auth->perm() & auth->listPerms->{$act}
+ auth && auth->{user}{"perm_$act"}
}