// (at your option) any later version. // Help Center Live is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Help Center Live; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Contributors: Michael Bird // File Comments: // This file allows administration of stats include_once '../class/include.php'; $inc = new Includer(); $inc->auth(); $inc->template(); $inc->stats(); $inc->operator(); // Check to see if the person is not logged in $GLOBALS['auth']->check_logout(); // Define the three sets of links in the template if ($GLOBALS['auth']->admin()) { $GLOBALS['template']->links('conf', 'conf'); } else { header('Location: ' . $GLOBALS['conf']['url'] . '/admin/index.php'); } if (isset($_POST['fd'])) { $fd = addslashes($_POST['fd']); } else { $fd = gmdate("j", time() + 3600 * $GLOBALS['conf']['offset']); } if (isset($_POST['fm'])) {