<?php
require_once('functions/functions.php');
print_html_header('Change Other\'s Data');
print_access_check('S');
$perms=get_user_perms($_SESSION['validid']);
if ($perms['issched']=='K'||$perms['issched']=='L')
{
print_data_correction_form($_SESSION['schedulefor']);
}
else
{
print_ref_data_correction($_SESSION['schedulefor']);
}
print_html_footer();
?>