Author: jfthomps
Date: Mon Feb 2 15:58:43 2009
New Revision: 740018
URL: http://svn.apache.org/viewvc?rev=740018&view=rev
Log:
VCL-76
modified viewImages - moved form html tags for edit, delete, and details buttons
inside of td tags to keep IE from displaying extra whitespace at the top of the
table
Modified:
incubator/vcl/trunk/web/.ht-inc/images.php
Modified: incubator/vcl/trunk/web/.ht-inc/images.php
URL:
http://svn.apache.org/viewvc/incubator/vcl/trunk/web/.ht-inc/images.php?rev=740018&r1=740017&r2=740018&view=diff
==============================================================================
--- incubator/vcl/trunk/web/.ht-inc/images.php (original)
+++ incubator/vcl/trunk/web/.ht-inc/images.php Mon Feb 2 15:58:43 2009
@@ -164,11 +164,11 @@
if(! in_array($id, $userImageIDs))
continue;
print " <TR>\n";
- print " <FORM action=\"" . BASEURL . SCRIPT . "\"
method=post>\n";
+ print " <TD align=center>\n";
+ print " <FORM action=\"" . BASEURL . SCRIPT . "\"
method=post>\n";
$cdata = array('imageid' => $id);
$cont = addContinuationsEntry('submitImageButton', $cdata);
- print " <INPUT type=hidden name=continuation
value=\"$cont\">\n";
- print " <TD align=center>\n";
+ print " <INPUT type=hidden name=continuation
value=\"$cont\">\n";
if($showdeleted && $images[$id]["deleted"] == 1) {
print " <INPUT type=submit name=submode
value=Undelete>\n";
}
@@ -177,8 +177,8 @@
print " <INPUT type=submit name=submode
value=Delete><br>\n";
}
print " <INPUT type=submit name=submode value=Details>\n";
+ print " </FORM>\n";
print " </TD>\n";
- print " </FORM>\n";
print " <TD align=center>" . $images[$id]["prettyname"] .
"</TD>\n";
print " <TD align=center>" . $images[$id]["owner"] .
"</TD>\n";
print " <TD align=center>" . $images[$id]["platform"] .
"</TD>\n";