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# Test Version Make Active Action Page
10# This page was used when there were test versions
11# It is not used in the current test implementation
12#
13# $RCSfile: test_version_make_active_action.php,v $  $Revision: 1.2 $
14# ---------------------------------------------------------------------
15
16include"./api/include_api.php";
17auth_authenticate_user();
18
19$test_id			= $_GET['test_id'];
20$project_id			= $_GET['project_id'];
21$tst_version_id	= $_GET['tst_version_id'];
22$redirect_page 		= "test_detail_page.php?test_id=$test_id&project_id=$project_id&tab=4";
23
24test_make_active_version( $test_id, $tst_version_id );
25
26html_print_operation_successful( "add_test_version_page", $redirect_page );
27
28
29# ---------------------------------------------------------------------
30# $Log: test_version_make_active_action.php,v $
31# Revision 1.2  2008/07/21 07:42:34  peter_thal
32# small bug fixes for test_detail_page linking parameter
33#
34# Revision 1.1.1.1  2005/11/30 23:00:58  gth2
35# importing initial version - gth
36#
37# ---------------------------------------------------------------------
38
39?>