mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-11-23 17:22:23 +03:00
Maintenance: Fixed type issue, updated translator list
This commit is contained in:
1
.github/translators.txt
vendored
1
.github/translators.txt
vendored
@@ -511,3 +511,4 @@ MrCharlesIII :: Arabic
|
|||||||
David Olsen (dawin) :: Danish
|
David Olsen (dawin) :: Danish
|
||||||
ltnzr :: French
|
ltnzr :: French
|
||||||
Frank Holler (holler.frank) :: German; German Informal
|
Frank Holler (holler.frank) :: German; German Informal
|
||||||
|
Korab Arifi (korabidev) :: Albanian
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ class SearchIndex
|
|||||||
$termMap = $this->textToTermCountMap($text);
|
$termMap = $this->textToTermCountMap($text);
|
||||||
|
|
||||||
foreach ($termMap as $term => $count) {
|
foreach ($termMap as $term => $count) {
|
||||||
$termMap[$term] = floor($count * $scoreAdjustment);
|
$termMap[$term] = intval($count * $scoreAdjustment);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $termMap;
|
return $termMap;
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ Link: http://aws.amazon.com/sdkforphp
|
|||||||
bacon/bacon-qr-code
|
bacon/bacon-qr-code
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
License File: vendor/bacon/bacon-qr-code/LICENSE
|
License File: vendor/bacon/bacon-qr-code/LICENSE
|
||||||
Copyright: Copyright (c) 2017, Ben Scholzen 'DASPRiD'
|
Copyright: Copyright (c) 2017-present, Ben Scholzen 'DASPRiD'
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
Source: https://github.com/Bacon/BaconQrCode.git
|
Source: https://github.com/Bacon/BaconQrCode.git
|
||||||
Link: https://github.com/Bacon/BaconQrCode
|
Link: https://github.com/Bacon/BaconQrCode
|
||||||
|
|||||||
Reference in New Issue
Block a user