[Codestriker-commits] CVS update: codestriker/lib/Codestriker/Action ViewTopicProperties.pm
Brought to you by:
sits
|
From: <si...@us...> - 2008-02-23 02:30:26
|
User: sits
Date: 08/02/22 18:30:15
Modified: lib/Codestriker/Action ViewTopicProperties.pm
Log:
Handle case where bugtracker is not defined.
Index: ViewTopicProperties.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker/Action/ViewTopicProperties.pm,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ViewTopicProperties.pm 25 Aug 2007 09:11:07 -0000 1.14
+++ ViewTopicProperties.pm 23 Feb 2008 02:30:14 -0000 1.15
@@ -88,6 +88,8 @@
my @bug_id_array = split /[\s,]+/, $topic->{bug_ids};
$vars->{'bug_id_array'} = \@bug_id_array;
$vars->{'bugtracker'} = $Codestriker::bugtracker;
+ } else {
+ $vars->{'bugtracker'} = '';
}
$vars->{'document_reviewers'} =
|