mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00

Needs a lot of work still but you can now manage your contact list and send/receive messages from people so it's usable!
17 lines
389 B
PHP
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');
|
|
?>
|