I have an atom based view, displaying atom title, with attribute : display as link
The link is specified as atom/[sid]
on a large site, the link results in "http://example.org/atom/11%2C854" (or "http://example.org/atom/11,854")
with, of course, very bad result...
The problem is solved by
scald.views.inc
line#23
$data['scald_atoms']['sid'] = array(
'title' => t('Scald ID'),
'help' => t("The atom's unique identifier"),
'field' => array(
- 'handler' => 'views_handler_field_numeric',
+ 'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
I could not find a way to customize this "regional" formatting, but, anyway, the field should not be formatted...
Thanks,
Comments
Comment #1
jcisio commentedLooks trivial. So I committed and pushed. Thanks.