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.
1 parent 8e12458 commit da7041dCopy full SHA for da7041d
meta/AggregationTable.php
@@ -308,7 +308,11 @@ protected function renderColumnHeaders()
308
309
// output XHTML header
310
$this->renderer->doc .= "<th $width $data>";
311
- $this->renderer->doc .= '<a href="' . $link . '" class="' . $sortclass . '" title="' . $this->helper->getLang('sort') . '">' . hsc($header) . '</a>';
+ if (is_a($this->renderer, 'renderer_plugin_dw2pdf')) {
312
+ $this->renderer->doc .= hsc($header);
313
+ } else {
314
+ $this->renderer->doc .= '<a href="' . $link . '" class="' . $sortclass . '" title="' . $this->helper->getLang('sort') . '">' . hsc($header) . '</a>';
315
+ }
316
$this->renderer->doc .= '</th>';
317
}
318
0 commit comments