In doing an export and pasting the code into hook_views_data(). There were may instances of a single quote in the help text not being escaped.

Comments

frankcarey’s picture

Priority: Normal » Minor

Pretty, easy to clean it up by hand, so marking this low priority.

Example:

$data = array(
'mail' => array(
      'title' => t('mail'),
      'help' => t('User's email address.'),
      'field' => array(
        'handler' => 'views_handler_field',
        'click sortable' => TRUE,
      ),
      'filter' => array(
        'handler' => 'views_handler_filter_string',
        'allow empty' => TRUE,
      ),
      'argument' => array(
        'handler' => 'views_handler_argument_string',
      ),
      'sort' => array(
        'handler' => 'views_handler_sort',
      ),
    ),
mikeryan’s picture

Status: Active » Fixed

Done.

Status: Fixed » Closed (fixed)

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