Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/main/ticket/update_report.php

24 lines
649 B

10 years ago
<?php
/* For licensing terms, see /license.txt */
/**
* @package chamilo.plugin.ticket
*/
exit;
10 years ago
require_once __DIR__.'/../inc/global.inc.php';
$work_id = (int) $_POST['work_id'];
$forum_id = (int) $_POST['forum_id'];
$rs_id = (int) $_POST['rs_id'];
10 years ago
api_protect_course_script();
if (!api_is_allowed_to_edit()) {
echo Display::return_message(get_lang("DeniedAccess"), 'error');
10 years ago
} else {
$sql = "UPDATE ".Database::get_main_table('rp_reporte_semanas')."
SET work_id = $work_id, forum_id = $forum_id
WHERE id = $rs_id";
10 years ago
Database::query($sql);
echo Display::return_message(get_lang('Updated'), 'confirm');
10 years ago
}