Merge pull request #4185 from sbwalker/dev
fix #4160 - content entered being overidden by original content
This commit is contained in:
commit
85224c8f0c
|
@ -174,7 +174,11 @@
|
||||||
_rawhtml = Content;
|
_rawhtml = Content;
|
||||||
_originalrawhtml = _rawhtml; // preserve for comparison later
|
_originalrawhtml = _rawhtml; // preserve for comparison later
|
||||||
_originalrichhtml = "";
|
_originalrichhtml = "";
|
||||||
_contentchanged = true; // identifies when Content parameter has changed
|
|
||||||
|
if (Content != _originalrawhtml)
|
||||||
|
{
|
||||||
|
_contentchanged = true; // identifies when Content parameter has changed
|
||||||
|
}
|
||||||
|
|
||||||
if (!AllowRichText)
|
if (!AllowRichText)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user