diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/CHANGES.MD b/CHANGES.MD index cedcfa62..e777eda2 100644 --- a/CHANGES.MD +++ b/CHANGES.MD @@ -6,7 +6,9 @@ - Footer dans 3 blocs contenant dans l'ordre : Texte, Réseaux sociaux, Copyright - Pagination variable du nombres d'articles par page (news, blog et form) - Position du module Galerie dans une page ; haut ; bas ou libre avec les doubles crochets insérés dans l'article [] (PeterRabbit) - - Prise en compte des balises OpenGraph title et description + - Prise en compte des balises OpenGraph title , description et type +* Correction : + - Accès aux pages désactivées par le sitemap ## version 8.3.13 : * Modifications : diff --git a/core/core.php b/core/core.php index a11d5937..80e7e7d2 100644 --- a/core/core.php +++ b/core/core.php @@ -1983,6 +1983,14 @@ class layout extends common { echo ''; } + /** + * Affiche le type + */ + public function showMetaType() { + echo ''; + } + + /** * Affiche la notification */ diff --git a/core/layout/blank.php b/core/layout/blank.php index 957206be..8ad4b2e0 100755 --- a/core/layout/blank.php +++ b/core/layout/blank.php @@ -6,6 +6,7 @@ showMetaTitle(); ?> showMetaDescription(); ?> + showMetaType(); ?> showFavicon(); ?> showVendor(); ?> diff --git a/core/layout/light.php b/core/layout/light.php index aab556d9..6bf5a3c6 100755 --- a/core/layout/light.php +++ b/core/layout/light.php @@ -6,6 +6,7 @@ showMetaTitle(); ?> showMetaDescription(); ?> + showMetaType(); ?> showFavicon(); ?> showVendor(); ?> diff --git a/core/layout/main.php b/core/layout/main.php index 8241a091..24bd914b 100755 --- a/core/layout/main.php +++ b/core/layout/main.php @@ -6,6 +6,7 @@ showMetaTitle(); ?> showMetaDescription(); ?> + showMetaType(); ?> showFavicon(); ?> showVendor(); ?> diff --git a/core/module/sitemap/view/index/index.php b/core/module/sitemap/view/index/index.php index c6223054..290a5544 100755 --- a/core/module/sitemap/view/index/index.php +++ b/core/module/sitemap/view/index/index.php @@ -1,11 +1,17 @@