﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4949	Inserting table column results in wrong colspan	Tobiasz Cudnik		"Inserting table column results in wrong colspan.
=== Reproduce ===
 1. Use following content:
{{{
<table>
	<tbody>
		<tr>
			<td colspan=""2"">
				TD</td>
		</tr>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
	</tbody>
</table>
}}}
 2. Right click on first cell ""TD"" and choose ""Column -> Add column after"".
 3. Result
{{{
<table>
	<tbody>
		<tr>
			<td colspan=""2"">
				TD</td>
			<td colspan=""2"">
				&nbsp;</td>
		</tr>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
	</tbody>
</table>
}}}
 4. Expected: New column should be added in first row without colspan=""2""."	Bug	closed	Normal		Core : Tables	3.0	fixed		
