GX-Bug #57757 » WithdrawalContentFix.patch
src/system/classes/shop_content/ShopContentContentView.inc.php (date 1520016094000) | ||
---|---|---|
277 | 277 |
{ |
278 | 278 |
$content_body = $this->content_text; |
279 | 279 |
} |
280 |
|
|
281 |
if(!empty($this->content_heading)) |
|
282 |
{ |
|
283 |
$content_body = '<strong>' . $this->content_heading . '</strong><br /><br />' . $content_body; |
|
284 |
} |
|
280 | 285 |
$this->set_content_data('CONTENT_HEADING', ''); |
281 | 286 |
$this->set_content_data('HIDE_BOTTOM', true); |
282 |
$this->set_content_data('CONTENT_BODY', '<strong>' . $this->content_heading . '</strong><br /><br />' . $content_body);
|
|
287 |
$this->set_content_data('CONTENT_BODY', $content_body); |
|
283 | 288 |
$this->set_content_data('BUTTON_CONTINUE', ''); |
284 | 289 |
} |
285 | 290 |
|