. /** * This file was replaced by index.php in Moodle 2.0 * It now simply redirects to index.php * * @author Luis Rodrigues and Martin Dougiamas * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @package message */ require(dirname(dirname(__FILE__)) . '/config.php'); require_once($CFG->dirroot . '/message/lib.php'); //the same URL params as in 1.9 $userid = required_param('id', PARAM_INT); $noframesjs = optional_param('noframesjs', 0, PARAM_BOOL); $params = array('user2'=>$userid); if (!empty($noframesjs)) { $params['noframesjs'] = $noframesjs; } $url = new moodle_url('/message/index.php', $params); redirect($url); ?>