diff options
author | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2007-01-05 18:30:05 +0000 |
---|---|---|
committer | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2007-01-05 18:30:05 +0000 |
commit | 6e1dfe1dbe8c70a04234df5eadbdf9b79b612139 (patch) | |
tree | 46d39aeee0a419011fb8e40241adbc36dc8d3f91 /plugins | |
parent | dc2c2b068693f78bba914895fbddbb1ec203eb0c (diff) | |
download | video-6e1dfe1dbe8c70a04234df5eadbdf9b79b612139.tar.gz video-6e1dfe1dbe8c70a04234df5eadbdf9b79b612139.tar.bz2 |
Restored original behaviour of node links of 4.7
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/video_image/video_image.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/video_image/video_image.module b/plugins/video_image/video_image.module index a85455d..9b8c0da 100644 --- a/plugins/video_image/video_image.module +++ b/plugins/video_image/video_image.module @@ -174,7 +174,7 @@ function theme_video_image_teaser($node) { $image = theme('image', $node->serial_data['image_teaser'], $node->title, $node->title, array('class' => 'video_image_teaser'), FALSE); } $output .= l($image, "node/$node->nid", array(), NULL, NULL, FALSE, TRUE); //Create a link with an image in it. - $output .= $node->teaser . '<br class="video_image_clear" />'; + $output .= '<br class="video_image_clear" />'; return $output; } |