Open mondayrunner opened 11 years ago
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* Constructor for this controller
*/
public function __construct()
{
parent::__construct();
}
/**
* Indexpage for application
*
* @access public
* @return string
*/
public function index()
{
$this->view = FALSE;
$cache_expire = 60*60*24*365;
header("Pragma: public");
header("Cache-Control: max-age=".$cache_expire);
header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$cache_expire) . ' GMT');
echo '<script src="//connect.facebook.net/en_US/all.js"></script>';
}
}```