MyBB Hacks

Full Version: Page saving
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
^ Yeah, basically that.

PHP Code:
<?php

function cdthread_info() {
	return array(
		'name'			=> 'Content Disposition Thread',
	);
}

$plugins->add_hook('showthread_start', 'cdthread_run');
function cdthread_run() {
	global $thread;
	header('Content-Disposition: inline; filename="'.strtr($thread['subject'], array("\r" => '', "\n" => '', '"' => '\\"')).'"');
}


Installed here and appears to work.

It works, thanks Yumi Smile
Pages: 1 2
Reference URL's