diff options
Diffstat (limited to 'app/class')
-rw-r--r-- | app/class/modelrender.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/class/modelrender.php b/app/class/modelrender.php index 540e7b9..2b22bb1 100644 --- a/app/class/modelrender.php +++ b/app/class/modelrender.php @@ -201,7 +201,7 @@ class Modelrender extends Modelart $head .= '<meta property="og:title" content="' . $this->art->title() . '">' . PHP_EOL; $head .= '<meta property="og:description" content="' . $this->art->description() . '">' . PHP_EOL; - $head .= '<meta property="og:image" content="' . Config::domain() . '/' . Config::basepath() . '/' . self::thumbnailpath() . $this->art->id() . '.jpg">' . PHP_EOL; + $head .= '<meta property="og:image" content="' . Config::domain() . self::thumbnailpath() . $this->art->id() . '.jpg">' . PHP_EOL; $head .= '<meta property="og:url" content="' . Config::domain() . '">' . PHP_EOL; |