mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-18 12:11:36 +00:00
Empty commit
This commit is contained in:
parent
6517078996
commit
ede37637d3
@ -45,6 +45,8 @@
|
||||
$PerPage = POSTS_PER_PAGE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
//---------- Get some data to start processing
|
||||
|
||||
// Thread information, constant across all pages
|
||||
@ -241,6 +243,9 @@
|
||||
foreach ($Thread as $Key => $Post) {
|
||||
list($PostID, $AuthorID, $AddedTime, $Body, $EditedUserID, $EditedTime) = array_values($Post);
|
||||
list($AuthorID, $Username, $PermissionID, $Paranoia, $Artist, $Donor, $Warned, $Avatar, $Enabled, $UserTitle) = array_values(Users::user_info($AuthorID));
|
||||
|
||||
|
||||
|
||||
$UserInfo = Users::user_info($EditedUserID);
|
||||
$JsonPosts[] = array(
|
||||
'postId' => (int)$PostID,
|
||||
|
@ -11,7 +11,6 @@
|
||||
|
||||
//---------- Things to sort out before it can start printing/generating content
|
||||
|
||||
|
||||
// Enable TOC
|
||||
Text::$TOC = true;
|
||||
|
||||
@ -39,6 +38,7 @@
|
||||
}
|
||||
|
||||
|
||||
|
||||
if (isset($LoggedUser['PostsPerPage'])) {
|
||||
$PerPage = $LoggedUser['PostsPerPage'];
|
||||
} else {
|
||||
|
@ -469,7 +469,7 @@
|
||||
),
|
||||
'resolve_options' => array(
|
||||
'upload' => '0',
|
||||
'warn' => '1',
|
||||
'warn' => '2',
|
||||
'delete' => '1',
|
||||
'pm' => '[rule]2.1.11[/rule]. Music ripped from the radio (Satellite or FM), television, the web, or podcasts are not allowed.
|
||||
The only allowable media formats are CD, DVD, Vinyl, Soundboard, SACD, DAT, Cassette, WEB, and Blu-ray.'
|
||||
|
Loading…
Reference in New Issue
Block a user