1<?php
2# ---------------------------------------------------------------------
3# rth is a requirement, test, and bugtracking system
4# Copyright (C) 2005 George Holbrook - rth@lists.sourceforge.net
5# This program is distributed under the terms and conditions of the GPL
6# See the README and LICENSE files for details
7#----------------------------------------------------------------------
8# ---------------------------------------------------------------------
9# Results Update Fail Test Run Action Page
10#
11# $RCSfile: results_update_fail_test_run_action.php,v $  $Revision: 1.1.1.1 $
12# ---------------------------------------------------------------------
13
14include"./api/include_api.php";
15auth_authenticate_user();
16
17
18$page           = basename(__FILE__);
19$redirect_page	= "results_page.php";
20
21$s_results 		= session_get_properties("results");
22$s_testset_id 	= $s_results['testset_id'];
23$s_test_id		= $s_results['test_id'];
24
25$s_user 		= session_get_user_properties();
26$tester		 	= $s_user['username'];
27
28$status 		= "Failed";
29
30results_update_test_status( $s_testset_id, $s_test_id, $tester, $status );
31
32//html_redirect($redirect_page);
33html_print_operation_successful('update_test_result_page', $redirect_page);
34
35# ---------------------------------------------------------------------
36# $Log: results_update_fail_test_run_action.php,v $
37# Revision 1.1.1.1  2005/11/30 23:00:58  gth2
38# importing initial version - gth
39#
40# ---------------------------------------------------------------------
41
42?>