fixing bad rendering in time tracker manage projects screen, missing end div tag
This commit is contained in:
parent
be64f0367f
commit
068f8abd5a
2 changed files with 3 additions and 2 deletions
|
|
@ -8,6 +8,7 @@
|
|||
Finegan, Core Mobility)
|
||||
- fix: the fileImport script did not resize vertical images. (Martin Kamerbeek / Oqapi)
|
||||
- fix: TrashClipboard.pm (thanks to Erik Svanberg for the patch)
|
||||
- fix: Manage events in time tracker goofed up (perlDreamer Consulting, LLC)
|
||||
|
||||
7.3.11
|
||||
- Added an option for enabling coverage tests to testCodebase.pl.
|
||||
|
|
|
|||
|
|
@ -468,7 +468,7 @@ sub www_manageProjects {
|
|||
$errorMessage = qq|<span style="color:red;font-weight:bold">$_[0]</span>| if($_[0]);
|
||||
|
||||
my $output .= qq|
|
||||
$errorMessage;
|
||||
$errorMessage
|
||||
<div id="wrapper">
|
||||
<table id="mainDash">
|
||||
<tbody>
|
||||
|
|
@ -526,7 +526,7 @@ sub www_manageProjects {
|
|||
$output .= qq|<tr><td class="tableData" colspan="4">$noProjects</td></tr>|
|
||||
}
|
||||
|
||||
$output .= "</tbody></table>";
|
||||
$output .= "</tbody></table></div>";
|
||||
|
||||
my $css = q|
|
||||
<style type="text/css">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue