ОШИБКА!
Назад

'; require_once ('../incfiles/end.php'); exit; } /////*/ $reqt = mysql_query("SELECT * FROM `ticket` where `id`='$id' LIMIT 1;"); $arrt = mysql_fetch_array($reqt); echo '
Тикеты | № '.$arrt[id].'
'; echo '
'; if ($user_id) { echo '
'; if ($arrt[status]==1){ echo 'Закрыть'; echo' | На решение'; echo' | Открыть'; } if ($arrt[status]==2){ echo 'Закрыть'; echo' | На решение'; echo' | Открыть'; } if ($arrt[status]==3){ echo 'Закрыть'; echo' | На решение'; echo' | Открыть'; } echo'
'; } $requ = mysql_query("SELECT `name`, `rights` FROM `users` where `id`='$arrt[user]' LIMIT 1"); $arru = mysql_fetch_array($requ); $text = $arrt['text']; $text = functions::checkout($text, 1, 2); if ($set_user['smileys']) $text = smileys($text, $arru['rights'] ? 1 : 0); echo '' .$text.''; echo '
Добавил: '.$arru[name].'
'; ///// echo 'Время: ' . functions::display_date($arrt['time']) . '
'; $prior = array ( 1 => 'Низкий', 2 => 'Средний', 3 => 'Высокий'); echo 'Приоритет: '.$prior[$arrt[prior]].'
'; echo '
'; echo '
Комментарии
'; echo '
 Добавить коммент
'; $total = mysql_result(mysql_query("SELECT COUNT(*) FROM `ticket` where `tick_id`='$arrt[id]' and `type`='2';"), 0); $req = mysql_query("SELECT * FROM `ticket` where `tick_id`='$arrt[id]' and `type`='2' order by `time` DESC LIMIT $start, $kmess;"); if ($total != '0') { while ($arr = mysql_fetch_array($req)) { echo ($i % 2) ? '
' : '
'; $requa = mysql_query("SELECT `name`, `rights` FROM `users` where `id`='$arr[user]' LIMIT 1"); $arrua = mysql_fetch_array($requa); echo ''.$arrua[name].''; echo ' (' . date("d.m.Y / H:i", $arr['time'] + (core::$system_set['timeshift'] + core::$user_set['timeshift']) * 3600) . ')
'; $texto = $arr['text']; $texto = functions::checkout($texto, 1, 2); if ($set_user['smileys']) $texto = smileys($texto, $arrua['rights'] ? 1 : 0); echo '' .$texto.''; if ($user_id) echo ''; echo '
'; ++$i; } if ($total > $kmess) { echo '

' . pagenav('index.php?act=read&id='.$id.'&', $start, $total, $kmess) . '

'; echo '
Стр:
'; } }else {echo '
Ответов нет!
';} echo '
Всего: ' . $total . '
'; echo '- Назад'; ?>