<?php /**
 * @brief Public bootstrap
 * @author <a href='http://www.invisionpower.com'>Invision Power 
Services, Inc.</a>
 * @copyright	(c) 2001 - SVN_YYYY Invision Power Services, Inc.
 * @license http://www.invisionpower.com/legal/standards/
 * @package IPS Social Suite
 * @since 19th May 2015
 * @version SVN_VERSION_NUMBER
 */
 /* You must define the path to your IPS4 installation here, with a 
trailing slash.
 * THIS IS A PATH, NOT A URL.  So, for example if this file is 
located in the root
 * of your site at /home/account/public_html and your forums are in 
a subfolder
 * named forums, you would set this to 
/home/account/public_html/forums/
 */ 


define( 'PATH_TO_SUITE', '/var/www/html/forums/' );


		
$_SERVER['SCRIPT_FILENAME']	= __FILE__; 
$_GET['app'] = 'cms'; 
$_GET['module'] = 'pages'; 
$_GET['controller'] = 'page'; 

require_once PATH_TO_SUITE . 'init.php';
\IPS\Dispatcher\Front::i()->run();
