Skip to content

Commit

Permalink
Item1219: Remove big border from dependency table
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@2921 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
ArthurClemens authored and ArthurClemens committed Mar 8, 2009
1 parent 62c443f commit ae9d8c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BuildContrib/lib/Foswiki/Contrib/Build.pm
Expand Up @@ -307,7 +307,7 @@ sub new {
my $cells =
CGI::th('Name') . CGI::th('Version') . CGI::th('Description');
$this->{DEPENDENCIES} =
CGI::table( { border => 1 }, CGI::Tr($cells) . $deptable );
CGI::table( { border => 1, class => 'foswikiTable' }, CGI::Tr($cells) . $deptable );
}

$this->{VERSION} = $this->_get_svn_version();
Expand Down Expand Up @@ -488,7 +488,7 @@ sub _get_svn_version {
while ( $idx < $limit ) {
my $file =
${ $this->{files} }[ $idx++ ]
; #accessing ->{name} directly creats it.
; #accessing ->{name} directly creates it.
push( @files,
$this->{basedir} . '/' . ( $file->{name} || '' ) );
}
Expand Down

0 comments on commit ae9d8c9

Please sign in to comment.