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.
16 lines
527 B
16 lines
527 B
![]()
12 years ago
|
<?php
|
||
|
require_once '../config.php';
|
||
|
$plugin = TicketPlugin::create();
|
||
|
|
||
|
$work_id = $_POST['work_id'];
|
||
|
$forum_id = $_POST['forum_id'];
|
||
|
$rs_id = $_POST['rs_id'];
|
||
|
api_protect_course_script();
|
||
|
if (!api_is_allowed_to_edit()){
|
||
|
Display::display_error_message($plugin->get_lang("DeniedAccess"));
|
||
|
}else{
|
||
|
$sql ="UPDATE ".Database::get_main_table('rp_reporte_semanas')." SET work_id = '$work_id' , forum_id = '$forum_id' WHERE id ='$rs_id'";
|
||
|
Database::query($sql);
|
||
|
Display::display_confirmation_message("Se actualizo con exito");
|
||
|
}
|
||
![]()
12 years ago
|
?>
|