<?php

if(!defined('IN_MYBB'))
	die("This file cannot be accessed directly.");

$plugins->add_hook('showthread_start', 'lockedqr_run');

function lockedqr_info()
{
	return array(
		'name'			=> 'Locked Thread Quick Reply Warning',
		'description'	=> 'Simple plugin which emphasises to mods/admins that a thread is locked, by making the background of the quick reply box red.',
		'website'		=> 'http://mybbhacks.zingaburga.com/',
		'author'		=> 'ZiNgA BuRgA',
		'authorsite'	=> 'http://zingaburga.com/',
		'version'		=> '1.0',
		'compatibility'	=> '1*',
		'guid'			=> '73fac4d44711b690d4754788d5f98a43'
	);
}

function lockedqr_run()
{
	global $templates, $thread;
	if($thread['closed'] != 1 && $thread['closed'] != 'yes') return;
	
	if(!$templates->cache['showthread_quickreply'])
		$templates->cache('showthread_quickreply');
	$templates->cache['showthread_quickreply'] = str_replace(array(' class="trow1"', ' class="trow2"'), ' class="trow_shaded"', $templates->cache['showthread_quickreply']);
}

?>