Closed (fixed)
Project:
KML
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Jun 2011 at 10:04 UTC
Updated:
7 Aug 2011 at 05:01 UTC
Jump to comment: Most recent file
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
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | 1195028-kml-icon-d7-2.patch | 565 bytes | jeffschuler |
Comments
Comment #1
xacobeCorrection
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';Comment #2
jeffschulerfix for 7.x-1.x-dev
Comment #3
jeffschulercommitted to 7.x-1.x-dev
Comment #4
jeffschulercommitted to 6.x-2.x-dev
thanks!