diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-03-31 15:48:40 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-03-31 15:48:40 +0200 |
commit | b75e65b2d458bfa3628876c3b1f5faa9dbb4412e (patch) | |
tree | 88edaba21a344583abd127ba5d8e2adfb167ac71 /app/class | |
parent | 2e27596acb55e15495492fee916304d647bb3eab (diff) | |
download | wcms-b75e65b2d458bfa3628876c3b1f5faa9dbb4412e.tar.gz wcms-b75e65b2d458bfa3628876c3b1f5faa9dbb4412e.zip |
domain analyse fix
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; |