From e4e38e02cfe626ffeda26b1d4a08df7a6cd3997d Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Wed, 02 Feb 2011 14:41:41 -0500
Subject: [PATCH] Fix inconsistency in de_DE localization (#1487749)

---
 program/js/tiny_mce/plugins/table/table.htm |   16 +++++-----------
 1 files changed, 5 insertions(+), 11 deletions(-)

diff --git a/program/js/tiny_mce/plugins/table/table.htm b/program/js/tiny_mce/plugins/table/table.htm
index 75136e6..f269039 100644
--- a/program/js/tiny_mce/plugins/table/table.htm
+++ b/program/js/tiny_mce/plugins/table/table.htm
@@ -9,7 +9,6 @@
 	<script type="text/javascript" src="../../utils/editable_selects.js"></script>
 	<script type="text/javascript" src="js/table.js"></script>
 	<link href="css/table.css" rel="stylesheet" type="text/css" />
-	<base target="_self" />
 </head>
 <body id="table" style="display: none">
 	<form onsubmit="insertTable();return false;" action="#">
@@ -58,7 +57,7 @@
 								<td><label id="classlabel" for="class">{#class_name}</label></td>
 								<td colspan="3">
 								 <select id="class" name="class" class="mceEditableSelect">
-									<option value="" selected>{#not_set}</option>
+									<option value="" selected="selected">{#not_set}</option>
 								 </select></td>
 							  </tr>
 							  <tr>
@@ -109,9 +108,9 @@
 						</tr>
 
 						<tr>
-							<td class="column1"><label for="frame">{#table_dlg.frame}</label></td> 
+							<td class="column1"><label for="tframe">{#table_dlg.frame}</label></td> 
 							<td>
-								<select id="frame" name="frame" class="advfield"> 
+								<select id="tframe" name="tframe" class="advfield"> 
 										<option value="">{#not_set}</option>
 										<option value="void">{#table_dlg.rules_void}</option>
 										<option value="above">{#table_dlg.rules_above}</option> 
@@ -180,13 +179,8 @@
 		</div>
 
 		<div class="mceActionPanel">
-			<div style="float: left">
-				<input type="submit" id="insert" name="insert" value="{#insert}" />
-			</div>
-
-			<div style="float: right">
-				<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
-			</div>
+			<input type="submit" id="insert" name="insert" value="{#insert}" />
+			<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
 		</div>
 	</form>
 </body>

--
Gitblit v1.9.1