The author name is not getting included in the Dublin Core metadata in the current version of OJS. See for example the header of this article: http://journals.sfu.ca/present3/index.php/demojournal/article/view/6. Line 30:
<meta name="DC.Creator.PersonalName" content=", "/>
I haven’t had a chance to play with the code, but it would appear that something funky is happening in lines 69-72 of https://github.com/pkp/ojs/blob/master/plugins/generic/dublinCoreMeta/DublinCoreMetaPlugin.inc.php:
$i=0;
foreach (explode(', ', $article->getAuthorString()) as $author) {
$templateMgr->addHeader('dublinCoreAuthor' . $i++, '<meta name="DC.Creator.PersonalName" content="' . htmlspecialchars($author) . '"/>');
}
It looks as if explode() is returning the delimiter (", "), but I don’t see how that should ever happen.