Skip to content
Snippets Groups Projects
Verified Commit 014d624e authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct bugs due to updated dependencies

parent 611a8d2b
Branches 3.0
No related tags found
No related merge requests found
Pipeline #3008 passed
FROM k8r.eu/justjanne/php:latest
FROM trafex/php-nginx:latest
USER root
RUN apk add --no-cache --update \
php-json \
php-pdo_sqlite \
php-pdo_pgsql
php82-json \
php82-pdo_sqlite \
php82-pdo_pgsql
USER nobody
ADD . /var/www/html/
\ No newline at end of file
ADD . /var/www/html/
......@@ -20,7 +20,7 @@ class Config
$this->database_connector = $database_connector;
$this->username = $username;
$this->password = $password;
$this->path_prefix = $path_prefix;
$this->path_prefix = rtrim($path_prefix, "/");
$this->backend = $backend;
$this->database_options = $options;
$this->enable_ranking = $enable_ranking;
......
......@@ -35,12 +35,19 @@ class PostgresSmartBackend implements Backend
function rankingParameters(): array
{
return [
":config_normalization",
":weight_content",
":weight_type",
":weight_time"
];
if ($this->enable_ranking) {
return [
":config_normalization",
":weight_content",
":weight_type",
":weight_time"
];
} else {
return [
":weight_type",
":weight_time"
];
}
}
private function rankingFunction(): string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment