Skip to content
Snippets Groups Projects
Commit 91f14480 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-5709: coding standards

parent 1f9920ce
No related branches found
No related tags found
1 merge request!264ISTWCMS-5709: removing the author from the teaser for news and blog
......@@ -252,7 +252,8 @@ class UwNodeContent {
if ($node_flags['get_header']) {
if ($view_mode == 'teaser') {
$content_data['header']['date'] = $this->addToContentData('date', 'field_uw_blog_date');
} else {
}
else {
$content_data['header']['date'] = $this->addToContentData('date', 'field_uw_blog_date');
$content_data['header']['author'] = $this->addToContentData('author', 'field_author');
}
......@@ -295,8 +296,7 @@ class UwNodeContent {
*
* @param array $node_flags
* The flags for the node.
* @param string $view_mode
* The view mode of the node.
*
* @return array
* Array of content to get from the node.
*/
......@@ -390,6 +390,7 @@ class UwNodeContent {
* The flags for the node.
* @param string $view_mode
* The view mode of the node.
*
* @return array
* Array of content to get from the node.
*/
......@@ -403,11 +404,12 @@ class UwNodeContent {
if ($view_mode == 'teaser') {
$content_data['header']['date'] = $this->addToContentData('date', 'field_uw_news_date');
}
else{
else {
$content_data['header']['date'] = $this->addToContentData('date', 'field_uw_news_date');
$content_data['header']['author'] = $this->addToContentData('author', 'field_author');
}
}
// Get the media.
if ($node_flags['get_media']) {
$content_data['media'] = $this->addToContentData('media', NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment