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
|
7.0.6
|
||||||
- fix: Error in DateTime.pm
|
- 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
|
- Added a cookieTTL parameter to the config file which lets you set an optional expiration time of the webgui session cookie
|
||||||
|
|
|
||||||
|
|
@ -3899,6 +3899,8 @@ my $value;
|
||||||
$value = $row{$fieldProperties->{$_}->{fieldName}};
|
$value = $row{$fieldProperties->{$_}->{fieldName}};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$value = substr($value, 0, $fieldProperties->{$_}->{summaryLength}) if ($fieldProperties->{$_}->{summaryLength});
|
||||||
|
|
||||||
$value =~ s/\n/<br \/>/g if (1);
|
$value =~ s/\n/<br \/>/g if (1);
|
||||||
|
|
||||||
my $props = {
|
my $props = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue