<?php
/**
* Session functions
*
* Moved all session functions into one file,
* include this where session starting might be required
*
* @author Andreas Goetz <hide@address.com>
*/
//init session
session_start();
require_once ("functions.php"); // needed for remove_magic_quotes
if (get_magic_quotes_gpc()) {
if (isset($_SESSION)) remove_magic_quotes($_SESSION);
}
?>