kml icon was not displayed in views. I had to modify the following lines of code to make it work.

Line:17 - views_plugin_style_kml.inc
from:

    $this->feed_image = drupal_get_path('module', 'views_kml') . 

to:

    $this->feed_image = drupal_get_path('module', 'kml') . 

Xacobe
www.xacobe.net

CommentFileSizeAuthor
#2 1195028-kml-icon-d7-2.patch565 bytesjeffschuler

Comments

xacobe’s picture

Correction
Line:16 - views_plugin_style_kml.inc
from:
$this->feed_image = drupal_get_path('module', 'views_kml') . '/images/kml.png';

to:
$this->feed_image = drupal_get_path('module', 'kml') . '/images/kml.png';

jeffschuler’s picture

Version: 6.x-2.0-alpha1 » 7.x-1.x-dev
Status: Active » Reviewed & tested by the community
StatusFileSize
new565 bytes

fix for 7.x-1.x-dev

jeffschuler’s picture

Version: 7.x-1.x-dev » 6.x-2.x-dev
Status: Reviewed & tested by the community » Patch (to be ported)

committed to 7.x-1.x-dev

jeffschuler’s picture

Status: Patch (to be ported) » Fixed

committed to 6.x-2.x-dev
thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.