Compare commits

...

2 commits

Author SHA1 Message Date
rxu
d0150ecd53
Merge 1ae9a49811 into 4140d50f6a 2025-04-25 16:28:59 +02:00
rxu
1ae9a49811
[ticket/16941] Remove ending slash from binlog_path
PHPBB3-14401
2025-04-25 21:28:36 +07:00

View file

@ -356,7 +356,7 @@ class fulltext_sphinx
array('read_timeout', '5'),
array('max_children', '30'),
array('pid_file', $this->config['fulltext_sphinx_data_path'] . 'searchd.pid'),
array('binlog_path', $this->config['fulltext_sphinx_data_path']),
array('binlog_path', rtrim($this->config['fulltext_sphinx_data_path'], '/\\')), // Trim trailing slash
),
);