add 'hellbanned' user class, with support from the comments extension

This commit is contained in:
Shish
2013-09-09 13:41:08 +01:00
parent 7c95981319
commit 1b73dd4ddc
6 changed files with 55 additions and 17 deletions

View File

@@ -42,6 +42,7 @@ class Comment {
$this->owner_id = $row['user_id'];
$this->owner_name = $row['user_name'];
$this->owner_email = $row['user_email']; // deprecated
$this->owner_class = $row['user_class'];
$this->comment = $row['comment'];
$this->comment_id = $row['comment_id'];
$this->image_id = $row['image_id'];
@@ -335,7 +336,7 @@ class CommentList extends Extension {
global $database;
$rows = $database->get_all("
SELECT
users.id as user_id, users.name as user_name, users.email as user_email,
users.id as user_id, users.name as user_name, users.email as user_email, users.class as user_class,
comments.comment as comment, comments.id as comment_id,
comments.image_id as image_id, comments.owner_ip as poster_ip,
comments.posted as posted
@@ -356,7 +357,7 @@ class CommentList extends Extension {
global $database;
$rows = $database->get_all("
SELECT
users.id as user_id, users.name as user_name, users.email as user_email,
users.id as user_id, users.name as user_name, users.email as user_email, users.class as user_class,
comments.comment as comment, comments.id as comment_id,
comments.image_id as image_id, comments.owner_ip as poster_ip,
comments.posted as posted
@@ -379,7 +380,7 @@ class CommentList extends Extension {
$i_image_id = int_escape($image_id);
$rows = $database->get_all("
SELECT
users.id as user_id, users.name as user_name, users.email as user_email,
users.id as user_id, users.name as user_name, users.email as user_email, users.class as user_class,
comments.comment as comment, comments.id as comment_id,
comments.image_id as image_id, comments.owner_ip as poster_ip,
comments.posted as posted