Hello there!
I've just recently started a project using Couch and have run into a problem. I've made an area of the page editable, but when it I visit the page and inspect the elements, some of the class names has gotten "xxx" inserted into them. Very strange behaviour. It looks something like this:
Original code:
Code that has been "xxx"-injected:
I went into the database and checked the `default_value` in the couch_fields table and it looks like the original code there, but in the `value` column of the couch_data_text table, I can see the "xxx"-infected class names.
Coincidentally, I noticed something very similar on the documentation page. If I go to http://www.couchcms.com/docs/tags-reference/get.html and check the related pages at the very bottom and try to visit the page for the "show" function, the browser tries to reach jaxxxvascxxxript:void(0);.
To ensure that it's not just my browser (Chrome) that screws things up, I've tried this in both Firefox and on my phone with the same results.
Any idea what this could be?
I've just recently started a project using Couch and have run into a problem. I've made an area of the page editable, but when it I visit the page and inspect the elements, some of the class names has gotten "xxx" inserted into them. Very strange behaviour. It looks something like this:
Original code:
- Code: Select all
<div class="menu-item">
<div class="menu-description">
<h2 class="menu-item-title col-xs-10">
lorem
</h2>
<h2 class="menu-item-title col-xs-2">
lorem
</h2>
<div class="menu-item-description">
lorem ipsum
</div>
</div>
</div>
Code that has been "xxx"-injected:
- Code: Select all
<div class="menu-item">
<div class="menu-descxxxription">
<h2 class="menu-item-title col-xs-10">
lorem
</h2>
<h2 class="menu-item-title col-xs-2">
lorem
</h2>
<div class="menu-item-descxxxription">
lorem ipsum
</div>
</div>
</div>
I went into the database and checked the `default_value` in the couch_fields table and it looks like the original code there, but in the `value` column of the couch_data_text table, I can see the "xxx"-infected class names.
Coincidentally, I noticed something very similar on the documentation page. If I go to http://www.couchcms.com/docs/tags-reference/get.html and check the related pages at the very bottom and try to visit the page for the "show" function, the browser tries to reach jaxxxvascxxxript:void(0);.
To ensure that it's not just my browser (Chrome) that screws things up, I've tried this in both Firefox and on my phone with the same results.
Any idea what this could be?