Skip to content

Commit 23e50af

Browse files
author
Ice Development
committed
Update Tables.php
Removed code preventing translation tables from being exported
1 parent 4ab3d54 commit 23e50af

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lib/MwbExporter/Model/Tables.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ public function init()
4242
// collect tables
4343
foreach ($this->node->xpath("value") as $key => $node) {
4444
$table = $this->getDocument()->getFormatter()->createTable($this, $node);
45-
// skip translation tables
46-
if ($table->isTranslationTable()) {
47-
continue;
48-
}
4945
$this->tables[] = $table;
5046
}
5147
usort($this->tables, function($a, $b) {
@@ -124,4 +120,4 @@ public function write(WriterInterface $writer)
124120

125121
return $this;
126122
}
127-
}
123+
}

0 commit comments

Comments
 (0)