';
+ if ((give_acl($iduser_temp, $id_grupo, "IM")==1) OR ($usuario == $iduser_temp))
+ echo '
'.$lang_label["incident"].'
';
+ else
+ echo '
'.$lang_label["incident"].'
';
+ echo '
'.$lang_label["in_openedwhen"].'';
+ echo "
".$inicio."";
+ echo '
'.$lang_label["updated_at"].'';
+ echo "
".$actualizacion."";
+ echo '
'.$lang_label["in_openedby"].'
';
+ if ((give_acl($iduser_temp, $id_grupo, "IM")==1) OR ($usuario == $iduser_temp)) {
+ echo "";
+ }
+ else {
+ echo "";
+ echo $usuario." - (".$nombre_real.")";
+ }
+ // Tipo de estado
+ // 0 - Abierta / Sin notas - Open, without notes
+ // 1 - Abierta / Notas aniadidas - Open, with notes
+ // 2 - Descartada / Not valid
+ // 3 - Caducada / Outdated
+ // 13 - Cerrada / Closed
+
+ if ((give_acl($iduser_temp, $id_grupo, "IM")==1) OR ($usuario == $iduser_temp))
+ echo '
'.$lang_label["status"].'
";
+
+ if ($creacion_incidente == 0){
+ // Upload control
+ if (give_acl($iduser_temp, $id_grupo, "IW")==1){
+ echo "
";
+ echo "
".$lang_label["attachfile"]."";
+ echo "
";
+ echo '
'.$lang_label["filename"].'
';
+ echo '';
+ echo '
'.$lang_label["description"].'
';
+ echo '
';
+ echo '
';
+ echo '
';
+ }
+ // ************************************************************
+ // Files attached to this incident
+ // ************************************************************
+
+ // Attach head if there's attach for this incident
+ $att_fil=mysql_query("SELECT * FROM tattachment WHERE id_incidencia = ".$id_inc);
+
+ if (mysql_num_rows($att_fil))
+ {
+ echo "
";
+ echo "
";
+ echo "
".$lang_label["attached_files"]."
";
+ echo "
";
+ echo "
".$lang_label["filename"];
+ echo "
".$lang_label["description"];
+ echo "
".$lang_label["size"];
+ echo "
".$lang_label["delete"];
+
+ while ($row=mysql_fetch_array($att_fil)){
+ echo "
";
+ }
+ // ********************************************************************
+ // Notes
+ // ********************************************************************
+ $cabecera=0;
+ $sql4='SELECT * FROM tnota_inc WHERE id_incidencia = '.$id_inc;
+ $res4=mysql_query($sql4);
+ while ($row2=mysql_fetch_array($res4)){
+ if ($cabecera == 0) { // Show head only one time
+ echo "
";
+ echo "
";
+ echo "
".$lang_label["in_notas_t1"]."
";
+ echo "
";
+ echo "
";
+ $cabecera = 1;
+ }
+
+ $sql3='SELECT * FROM tnota WHERE id_nota = '.$row2["id_nota"].' ORDER BY timestamp DESC';
+ $res3=mysql_query($sql3);
+ while ($row3=mysql_fetch_array($res3)){
+ $timestamp = $row3["timestamp"];
+ $nota = $row3["nota"];
+ $id_usuario_nota = $row3["id_usuario"];
+ // Show data
+ echo '
'.$lang_label["author"].':
';
+ $usuario = $id_usuario_nota;
+ $nombre_real = dame_nombre_real($usuario);
+ echo $usuario." - (".$nombre_real.")";
+
+ // Delete comment, only for admins
+ if ((give_acl($iduser_temp, $id_grupo, "IM")==1) OR ($usuario == $iduser_temp)) {
+ $myurl="index.php?sec=incidencias&sec2=operation/incidents/incident_detail&id=".$id_inc."&id_nota=".$row2["id_nota"]."&id_nota_inc=".$row2["id_nota_inc"];
+ echo '
";
+ } // create mode
+ }
+ else { // Doesn't have access to this page
+ audit_db($id_usuario,$REMOTE_ADDR, "ACL Violation","Trying to access to incident ".$id_inc." '".$titulo."'");
+ include ("general/noaccess.php");
+ }
+
+} // fin pagina - end page
+
+?>