Closed (fixed)
Project:
Ad Views
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Nov 2009 at 21:05 UTC
Updated:
8 Dec 2009 at 02:00 UTC
When I tried to build a view for HTML ads, I kept getting an error I didn't understand about a URL field that wasn't existing. I dug a little deeper and discovered a variable that's named wrongly in ad_views.views-ad_html.inc:
// Ad HTML - 'html'
$data['ad_html']['url'] = array(
'title' => t('HTML'),
// The help that appears on the UI
'help' => t('The ad HTML.'),
// Information for displaying
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => FALSE
)
);Changing line 24 to $data['ad_html']['html'] causes it to work properly.
Comments
Comment #1
milesgillham commentedFixed in -dev. Thanks for finding that!
Cheers,
Miles