MOON
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.4.10
System: Linux vps.presagepowered.net 2.6.18-398.el5 #1 SMP Tue Sep 16 20:51:48 EDT 2014 i686
User: mckernan (512)
PHP: 5.4.10
Disabled: NONE
Upload Files
File: /home/mckernan/public_html/index-CLOSED.php
<?php

// <!-- phpDesigner :: Timestamp [12/28/2009 11:40:40 PM] -->


// ********************************************************
//
//			App:			McKernan-Corp.com
//			Copyright:		John McKernan
//
// ********************************************************
//
//			File:			/index.php
//
// ********************************************************
//
//  page file: index page
//
// ********************************************************


// app init
$app_option = 'index';
require_once 'app.ini.php';
require_once 'wp_sitenews.php';


// user authentication
if (sess_isset('sid'))
{
	Sessions::refresh($_SESSION['sid']);
}
else
{
	Sessions::start(USR_GUEST, 0);
}



// page init
$main = new Main;


// prepare output
$tpl_used = 'index_body.tpl';


$output_page = array(
	'_page'				=> PageVars::get_page($app_option),
	'_menubar'			=> PageVars::get_menubar($app_option),
	'_whatsnew'			=> $whatsnew,
	'_quote'			=> $main->get_quote(),
	'_quote_caption'	=> $main->get_quote_caption(),
	'_cd'				=> $main->get_countdown(),
	'_u_individual'		=> URI::make_querystring('individuals.php'),
	'_u_rental'			=> URI::make_querystring('rentals.php'),
	'_u_business'		=> URI::make_querystring('business.php'),
	'_u_other'			=> URI::make_querystring('othertaxpayers.php'),
	'_footbar'			=> PageVars::get_footbar()

);


// output
require_once SV_LIB_ROOT . 'pageproc/pageoutput.php';


// eof

?>