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

jcisio’s picture

Status: Active » Fixed

Looks trivial. So I committed and pushed. Thanks.

  • jcisio committed 164db05 on 7.x-1.x
    Issue #2383289: Incorrect scald id formatting in views
    

Status: Fixed » Closed (fixed)

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