We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ead86fa + b3e9316 commit 057f6e9Copy full SHA for 057f6e9
meta/LookupTable.php
@@ -56,6 +56,12 @@ protected function renderEmptyResult() {
56
* @return string
57
*/
58
public function getFirstRow() {
59
+ // XHTML renderer doesn't like calling ->tablerow_open() without
60
+ // ->table_open() first, since it leaves some internal variables unset.
61
+ // Therefore, call ->table_open() and throw away the generated HTML.
62
+ $this->renderer->table_open();
63
+ $this->renderer->doc = '';
64
+
65
$this->renderResultRow(0, $this->result[0]);
66
return $this->renderer->doc;
67
}
0 commit comments