mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-18 20:21:37 +00:00
Empty commit
This commit is contained in:
parent
f20fe4b1aa
commit
1ba032a617
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
include(SERVER_ROOT.'/classes/class_text.php');
|
||||
$Text = new TEXT;
|
||||
@ -86,4 +85,4 @@
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
||||
?>
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?
|
||||
authorize(true);
|
||||
|
||||
//For sorting tags
|
||||
function compare($X, $Y){
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?
|
||||
authorize(true);
|
||||
include(SERVER_ROOT.'/sections/bookmarks/functions.php');
|
||||
|
||||
// Number of users per page
|
||||
|
@ -2,7 +2,6 @@
|
||||
ini_set('memory_limit', -1);
|
||||
//~~~~~~~~~~~ Main bookmarks page ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
|
||||
|
||||
authorize(true);
|
||||
|
||||
function compare($X, $Y){
|
||||
return($Y['count'] - $X['count']);
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
include(SERVER_ROOT.'/sections/bookmarks/functions.php');
|
||||
include(SERVER_ROOT.'/sections/torrents/functions.php');
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
/**********|| Page to show individual forums || ********************************\
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
if (isset($LoggedUser['PostsPerPage'])) {
|
||||
$PerPage = $LoggedUser['PostsPerPage'];
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
//TODO: Normalize thread_*_info don't need to waste all that ram on things that are already in other caches
|
||||
/**********|| Page to show individual threads || ********************************\
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
if(empty($_GET['type']) || $_GET['type'] == 'inbox' || $_GET['type'] == 'sentbox') {
|
||||
require(SERVER_ROOT.'/sections/ajax/inbox/inbox.php');
|
||||
@ -11,4 +10,4 @@
|
||||
die();
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
@ -1,9 +1,6 @@
|
||||
<?
|
||||
//no authorization because this page needs to be accessed to get the authkey
|
||||
|
||||
//authorize(true);
|
||||
|
||||
//calculate ratio --Gwindow
|
||||
//calculate ratio
|
||||
//returns 0 for DNE and -1 for infiinity, because we dont want strings being returned for a numeric value in our java
|
||||
$Ratio = 0;
|
||||
if($LoggedUser['BytesUploaded'] == 0 && $LoggedUser['BytesDownloaded'] == 0) {
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
if(!check_perms('site_torrents_notify')) {
|
||||
print
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
$RequestTax = 0.1;
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
include(SERVER_ROOT.'/sections/requests/functions.php');
|
||||
|
||||
$Queries = array();
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
/*
|
||||
User topic subscription page
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize(true);
|
||||
|
||||
include(SERVER_ROOT.'/classes/class_text.php');
|
||||
$Text = new TEXT;
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize();
|
||||
|
||||
// error out on invalid requests (before caching)
|
||||
if(isset($_GET['details'])) {
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize();
|
||||
|
||||
if(isset($_GET['details'])) {
|
||||
if(in_array($_GET['details'], array('day','week','overall','snatched','data','seeded'))) {
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?
|
||||
|
||||
authorize();
|
||||
|
||||
if(isset($_GET['details'])) {
|
||||
if(in_array($_GET['details'],array('ul','dl','numul','uls','dls'))) {
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?php
|
||||
|
||||
authorize(true);
|
||||
|
||||
require(SERVER_ROOT.'/sections/torrents/functions.php');
|
||||
|
||||
|
@ -1,8 +1,5 @@
|
||||
<?php
|
||||
|
||||
|
||||
authorize(true);
|
||||
|
||||
include(SERVER_ROOT.'/classes/class_text.php'); // Text formatting class
|
||||
$Text = new TEXT;
|
||||
|
||||
|
@ -2,7 +2,6 @@
|
||||
/**********************************************************************
|
||||
*>>>>>>>>>>>>>>>>>>>>>>>>>>> User search <<<<<<<<<<<<<<<<<<<<<<<<<<<<*
|
||||
**********************************************************************/
|
||||
authorize(true);
|
||||
|
||||
if (!empty($_GET['search'])) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user