Implement Becs' changes to Posts widget and post rendering

This commit is contained in:
Tautvidas Sipavičius
2015-11-18 14:44:57 +02:00
parent 0eef46db57
commit e62a8c2ec5
10 changed files with 48 additions and 13 deletions

View File

@@ -50,9 +50,11 @@ class MetaInformationManager {
// check if the user specified a label to be displayed before the author's name
if(strlen($preceded_by) > 0) {
$content = stripslashes($preceded_by) . ' ';
} else {
$content = '';
}
return join(', ', $categories);
return $content . join(', ', $categories);
} else {
return '';
}