File size: 1.33Kb
<?php if (!defined('VB_ENTRY')) die('Access denied.');
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 4.0.5
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2010 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/
/**
* @package indexer_null
* @author Ed Brown, vBulletin Development Team
* @version $Revision: 28678 $
* @since $Date: 2009-02-12 08:08 +0000 (Thurs, 12 Feb 2009) $
* @copyright vBulletin Solutions Inc.
*/
// ###################### class vb_Search_Indexer_Null #######################
// This class simply returns false, regardless of what function call it receives. It
// should normally be handled as static, but no problems are caused
// if it is instantiated.
class vb_Search_Indexcontroller_Null{
public function __call($name, $arguments)
{
return false;
}
}