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 ff65048 + 3ebc678 commit 573f2b7Copy full SHA for 573f2b7
meta/AggregationTable.php
@@ -230,8 +230,14 @@ protected function renderColumnHeaders()
230
231
// output XHTML header
232
$this->renderer->doc .= "<th $width $data>";
233
- $this->renderer->doc .= '<a href="' . $link . '" class="' . $sortclass . '" ' .
234
- 'title="' . $this->helper->getLang('sort') . '">' . hsc($header) . '</a>';
+
+ if (is_a($this->renderer, 'renderer_plugin_dw2pdf')) {
235
+ $this->renderer->doc .= hsc($header);
236
+ } else {
237
+ $this->renderer->doc .= '<a href="' . $link . '" class="' . $sortclass . '" ' .
238
+ 'title="' . $this->helper->getLang('sort') . '">' . hsc($header) . '</a>';
239
+ }
240
241
$this->renderer->doc .= '</th>';
242
}
243
0 commit comments