Closed (fixed)
Project:
Views Summarize
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Jan 2013 at 19:56 UTC
Updated:
15 Feb 2021 at 21:09 UTC
Jump to comment: Most recent
Comments
Comment #1
dalearyous commentedanyone have anything on this yet?
Comment #2
mojiro commentedPlease check this http://drupal.org/node/1876548
it is an unofficial patched version by me.
Comment #3
dalearyous commentedthanks! i will try it in next couple days!
Comment #4
dalearyous commentedI came up with my own solution to this problem. All you need to do is to modify the module file.
Within the foreach ($data as $val) add this right after
if (strpos($val, '') !== false) {
preg_match('/(.*)<\/a>/', $val, $value);
$val = $value[1];
}
Comment #5
oadaeh commentedIf you create a proper patch from working code, it's a lot easier to apply, test, and submit the changes.
Comment #6
oadaeh commentedComment #8
oadaeh commentedI committed code changes which address this.
I did not use the code from @dalearyous, because I was unable to get it to work correctly (probably because of something missing in the strpos() call), but also because the same code that fixed this was also part of the code that fixed the other two issues.