Index: modules/views_profile.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/views_profile.inc,v retrieving revision 1.3.2.4 diff -u -r1.3.2.4 views_profile.inc --- modules/views_profile.inc 5 May 2007 01:41:50 -0000 1.3.2.4 +++ modules/views_profile.inc 15 Aug 2007 01:02:17 -0000 @@ -256,7 +256,7 @@ */ function views_handler_field_profile_checkbox($fieldinfo, $fielddata, $value, $data) { $value = (unserialize($value) === false) ? $value : unserialize($value); - return (check_plain($value) == '0') ? '✗' : '✓'; + return (check_plain($value) == '0') ? '[  ]' : '[X]'; } /**