diff --git a/core/modules/parsers/wikiparser/rules/table.js b/core/modules/parsers/wikiparser/rules/table.js index 5feb470cf..75f36cf67 100644 --- a/core/modules/parsers/wikiparser/rules/table.js +++ b/core/modules/parsers/wikiparser/rules/table.js @@ -76,7 +76,7 @@ var processRow = function(prevColumns) { // Look for a space at the start of the cell var spaceLeft = false, chr = this.parser.source.substr(this.parser.pos,1); - var vAlign; + var vAlign = null; if (chr === "^") { vAlign = "top"; } else if(chr === ",") {