Empty commit

This commit is contained in:
Git 2012-08-25 08:00:15 +00:00
parent b862d42486
commit 4e762982fa
7 changed files with 19 additions and 5 deletions

View File

@ -2,7 +2,7 @@
class TEXT { class TEXT {
// tag=>max number of attributes // tag=>max number of attributes
private $ValidTags = array('b'=>0, 'u'=>0, 'i'=>0, 's'=>0, '*'=>0, '#'=>0, 'artist'=>0, 'user'=>0, 'n'=>0, 'inlineurl'=>0, 'inlinesize'=>1, 'headline'=>1, 'align'=>1, 'color'=>1, 'colour'=>1, 'size'=>1, 'url'=>1, 'img'=>1, 'quote'=>1, 'pre'=>1, 'code'=>1, 'tex'=>0, 'hide'=>1, 'plain'=>0, 'important'=>0, 'torrent'=>0, 'rule'=>0, private $ValidTags = array('b'=>0, 'u'=>0, 'i'=>0, 's'=>0, '*'=>0, '#'=>0, 'artist'=>0, 'user'=>0, 'n'=>0, 'inlineurl'=>0, 'inlinesize'=>1, 'headline'=>1, 'align'=>1, 'color'=>1, 'colour'=>1, 'size'=>1, 'url'=>1, 'img'=>1, 'quote'=>1, 'pre'=>1, 'code'=>1, 'tex'=>0, 'hide'=>1, 'plain'=>0, 'important'=>0, 'torrent'=>0, 'rule'=>0,
);
private $Smileys = array( private $Smileys = array(
':angry:' => 'angry.gif', ':angry:' => 'angry.gif',
':-D' => 'biggrin.gif', ':-D' => 'biggrin.gif',
@ -40,6 +40,7 @@ class TEXT {
':sorry:' => 'sorry.gif', ':sorry:' => 'sorry.gif',
':thanks:' => 'thanks.gif', ':thanks:' => 'thanks.gif',
':P' => 'tongue.gif', ':P' => 'tongue.gif',
':p' => 'tongue.gif',
':-P' => 'tongue.gif', ':-P' => 'tongue.gif',
':-p' => 'tongue.gif', ':-p' => 'tongue.gif',
':wave:' => 'wave.gif', ':wave:' => 'wave.gif',

View File

@ -2443,9 +2443,14 @@ function freeleech_groups($GroupIDs, $FreeNeutral = 1, $FreeLeechType = 0) {
$Debug->set_flag('completed module execution'); $Debug->set_flag('completed module execution');
/* Required in the absence of session_start() for providing that pages will change /* Required in the absence of session_start() for providing that pages will change
upon hit rather than being browser cache'd for changing content. */ upon hit rather than being browser cache'd for changing content.
Old versions of Internet explorer choke when downloading binary files over HTTPS with disabled cache.
Define the following constant in files that handle file downloads */
if(!defined('IE_WORKAROUND_NO_CACHE_HEADERS')) {
header('Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0'); header('Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0');
header('Pragma: no-cache'); header('Pragma: no-cache');
}
//Flush to user //Flush to user
ob_end_flush(); ob_end_flush();

View File

@ -203,4 +203,6 @@
$Cache->insert('Collector',$Settings); $Cache->insert('Collector',$Settings);
$Cache->commit_transaction(0); $Cache->commit_transaction(0);
} }
define('IE_WORKAROUND_NO_CACHE_HEADERS', 1);
?> ?>

View File

@ -193,4 +193,6 @@
$Cache->insert('Collector',$Settings); $Cache->insert('Collector',$Settings);
$Cache->commit_transaction(0); $Cache->commit_transaction(0);
} }
define('IE_WORKAROUND_NO_CACHE_HEADERS', 1);
?> ?>

View File

@ -306,7 +306,7 @@ function next_hour() {
$Message = 'You have downloaded more then 10gb while on Ratio Watch. Your Leeching privileges have been disabled. Please reread the rules and refer to this guide on how to improve your ratio https://ssl.what.cd/wiki.php?action=article&id=110'; $Message = 'You have downloaded more then 10gb while on Ratio Watch. Your Leeching privileges have been disabled. Please reread the rules and refer to this guide on how to improve your ratio https://ssl.what.cd/wiki.php?action=article&id=110';
foreach($UserIDs as $UserID) { foreach($UserIDs as $UserID) {
send_pm($UserID,0,db_string($Subject),db_string($Message)); send_pm($UserID,0,db_string($Subject),db_string($Message));
send_irc("PRIVMSG #reports : Leeching Disabled. Downloaded 10GB+ on Ratio Watch. https://what.cd/user.php?id=$UserID"); send_irc("PRIVMSG #reports : !leechdisabled Downloaded 10GB+ on Ratio Watch. https://what.cd/user.php?id=$UserID");
} }
$DB->query("UPDATE users_info AS i JOIN users_main AS m ON m.ID=i.UserID $DB->query("UPDATE users_info AS i JOIN users_main AS m ON m.ID=i.UserID

View File

@ -216,3 +216,5 @@
header('Content-disposition: attachment; filename="'.$FileName.'"'); header('Content-disposition: attachment; filename="'.$FileName.'"');
echo $Tor->enc(); echo $Tor->enc();
define('IE_WORKAROUND_NO_CACHE_HEADERS', 1);

View File

@ -102,3 +102,5 @@
$Zip->add_file($Tor->enc(), file_string($Month).'/'.$FileName); $Zip->add_file($Tor->enc(), file_string($Month).'/'.$FileName);
} }
$Zip->close_stream(); $Zip->close_stream();
define('IE_WORKAROUND_NO_CACHE_HEADERS', 1);