Closed (duplicate)
Project:
Views (for Drupal 7)
Version:
7.x-3.x-dev
Component:
Views Data
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Feb 2011 at 08:08 UTC
Updated:
16 Mar 2011 at 20:57 UTC
Jump to comment: Most recent file
Comments
Comment #1
dawehnerCan you export the view, too?
This is required to be able to reproduce the problem and to fix it at the end of the day.
Comment #2
slashrsm commentedView is attached. It happens in more views, but this should be the simpliest one.
Comment #3
secoif commentedI fixed this by simply changing the 'raw' to 'rendered':
Line ~= 620 views/modules/field/views_handler_field_field.inc
$tokens['[' . $this->options['id'] . '-' . $id . ']'] = filter_xss_admin($item['raw'][$id]);
to
$tokens['[' . $this->options['id'] . '-' . $id . ']'] = filter_xss_admin($item['rendered'][$id]);
Though I have no idea if this is the correct way to fix this or if there will be any later negative implications, just needed to get the thing not 500ing.
Comment #4
slashrsm commentedThis fixes the problem also for me.
Comment #5
servantleader commented+1
Comment #6
dawehner#1064290: Views field rewrite causes problem with drupal_validate_utf8 is a duplicate of this issue.