fix: sqlform trunctate search results doesn't work

This commit is contained in:
Martin Kamerbeek 2006-08-18 13:08:22 +00:00
parent 70bea40b94
commit f7654c83d6
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
7.0.7
- fix: sqlform trunctate search results doesn't work (Martin Kamerbeek /
Procolix)
7.0.6
- fix: Error in DateTime.pm
- Added a cookieTTL parameter to the config file which lets you set an optional expiration time of the webgui session cookie

View file

@ -3898,6 +3898,8 @@ my $value;
} else {
$value = $row{$fieldProperties->{$_}->{fieldName}};
}
$value = substr($value, 0, $fieldProperties->{$_}->{summaryLength}) if ($fieldProperties->{$_}->{summaryLength});
$value =~ s/\n/<br \/>/g if (1);