moodle/message/history.php
moodler e8e2d7f12f Latest messaging system
Needs a lot of work still but you can now manage your contact list
and send/receive messages from people so it's usable!
2004-12-28 13:49:15 +00:00

17 lines
389 B
PHP

<?php // $Id$
// For listing message histories
require('../config.php');
require_login();
/// Script parameters
$userid = required_param('id', PARAM_INT);
/// Check the user we are talking to is valid
if (! $user = get_record("user", "id", $userid)) {
error("User ID was incorrect");
}
print_heading('This script is not completed yet');
?>