note: I am using nopCommerce 1.90, Sql Server 2008 express.

The "bug" I have encountered involves either adding, or editing a product.

I will usually choose "source" when I enter the product's "full description" so I can have more control over the html.

Once I'm done, I switch back to the normal view, and when I'm done I hit "save".  It redirects me to the product list.

If I choose the "back" button on Internet Explorer, I go back to the product I just edited and the "normal" view of the full description is now the html!

If I click "source" then it's the html equivalent of the code I entered before.  For Example:

Adding a new product:

I choose "source".

Enter this:

<h3>A Headling</h3>
<p>This is a product description that I have typed in html/</p>
<ul>
<li>A short list</li>
<li>With 2 lines</li>
</ul>

and when done, click "Save" button.

I am now at the product list.

IF I click the "back" button on internet explorer I'm back at the product, but the "normal" full description shows this:

<h3>A Headling</h3>
<p>This is a product description that I have typed in html/</p>
<ul>
<li>A short list</li>
<li>With 2 lines</li>
</ul>

If I choose "source" I see html character codes in stead:

<p>&lt;h3&gt;A Headling&lt;/h3&gt; &lt;p&gt;This is a product description that I have typed in html/&lt;/p&gt; &lt;ul&gt; &lt;li&gt;A short list&lt;/li&gt; &lt;li&gt;With 2 lines&lt;/li&gt; &lt;/ul&gt;</p>