Maybe there's an option to change this behavior, so perhaps it's not a bug. However, here's the problem...
Version: WeBuilder 2010.0.0.108 Beta
OS: Microsoft Windows XP SP2
I'm editing a php file, but it shouldn't matter if it's css or html. The code is all properly lined up,
Code: Select all
<?php get_header(); ?>
<div id="content_box">
<div id="content" class="posts">
<?php if (have_posts()) : ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class="archive_head">'<?php echo single_cat_title(); ?>'</h2>
<?php } ?>
<?php while (have_posts()) : the_post(); ?>
etc...
If you take line (4) and add a couple [TAB] key spacings, that's fine. But now try to use the [Backspace] key. The editor erases ALL tabs you put in and even one or two more depending on the aligment of lines before and after. From my experience, the expected behavior is to erase only one tab spacing at a time. So if you entered four tab spacings, you should have to click the backspace key four times to return to the original alignment.