Merge pull request #956 from ltGuillaume/patch-1

Use comma for imploding robots meta tag
This commit is contained in:
Diego Najar 2019-02-13 22:54:02 +01:00 committed by GitHub
commit 4365147a40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ class pluginRobots extends Plugin {
}
if (!empty($robots)) {
$robots = implode(' ', $robots);
$robots = implode(',', $robots);
$html .= '<meta name="robots" content="'.$robots.'">'.PHP_EOL;
}
}
@ -63,4 +63,4 @@ class pluginRobots extends Plugin {
}
}
}
}