aks...@ho... added a comment to Topic "Initial support for Obsolete Topics".
URL: http://codestriker.sourceforge.net/cgi-bin/codestriker.pl?fn=4&line=30&new=1&topic=6964462&action=edit
File: /cvsroot/codestriker/codestriker/lib/Codestriker/Action/SubmitEditTopicsState.pm,v line 30.
Context:
--------------------------------------------------------------
my $topic_state = $http_input->get('topic_state');
my $email = $http_input->get('email');
+ my $button = $http_input->get('button');
+
* + # Check if this is an obsolete function, and if so, redirect to the
+ # create topic screen.
+ if ($button eq "Obsolete Topic(s)") {
+ my $url_builder = Codestriker::Http::UrlBuilder->new($query);
+ my $create_topic_url =
+ $url_builder->create_topic_url((join ',', @topics));
+ print $query->redirect(-URI=>$create_topic_url);
+ return;
+ }
--------------------------------------------------------------
aks...@ho... Thursday September 15, 2005 17:44:01
commented on line30 in right side... wanna see where it comes.
--------------------------------------------------------------
aks...@ho... Thursday September 15, 2005 17:21:47
commented on line30 in right side... wanna see where it comes.
--------------------------------------------------------------
|