aboutsummaryrefslogtreecommitdiff
path: root/model/Page.php
diff options
context:
space:
mode:
Diffstat (limited to 'model/Page.php')
-rw-r--r--model/Page.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/model/Page.php b/model/Page.php
index 6711a2c..f516836 100644
--- a/model/Page.php
+++ b/model/Page.php
@@ -24,10 +24,9 @@ class Page extends Model {
return $this->updateTs && $this->updateTs != $this->ts;
}
- public function getHtml(bool $retina): string {
+ public function getHtml(bool $is_retina, string $user_theme): string {
$html = $this->html;
- if ($retina)
- $html = markup::htmlRetinaFix($html);
+ $html = markup::htmlImagesFix($html, $is_retina, $user_theme);
return $html;
}