aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-11-09 13:24:46 -0500
committerBob Arnson <bob@firegiant.com>2020-11-09 13:35:21 -0500
commitae38ae001422b6925e3d214334fd64cfba526952 (patch)
tree2bfc152e5f6c9abeef4ab753f73e56d172c41dca
parentb4c92c6c1a7ad68870f3b21aa4548a20294b49a3 (diff)
downloadwix-ae38ae001422b6925e3d214334fd64cfba526952.tar.gz
wix-ae38ae001422b6925e3d214334fd64cfba526952.tar.bz2
wix-ae38ae001422b6925e3d214334fd64cfba526952.zip
Catch more former-supported-but-now-illegal inner text.
-rw-r--r--src/WixToolset.Core/Compiler.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 3dfe36c2..8d110ac3 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -4105,6 +4105,8 @@ namespace WixToolset.Core
4105 } 4105 }
4106 } 4106 }
4107 4107
4108 this.Core.VerifyNoInnerText(sourceLineNumbers, node);
4109
4108 if (null == columnName) 4110 if (null == columnName)
4109 { 4111 {
4110 this.Core.Write(ErrorMessages.ExpectedAttribute(childSourceLineNumbers, child.Name.LocalName, "Column")); 4112 this.Core.Write(ErrorMessages.ExpectedAttribute(childSourceLineNumbers, child.Name.LocalName, "Column"));