fix: sqlform trunctate search results doesn't work
This commit is contained in:
parent
70bea40b94
commit
f7654c83d6
2 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue