ensure the server salt path is initialized, instead of relying on the default

This commit is contained in:
El RIDO 2016-08-25 15:02:38 +02:00
parent e925833090
commit a13266a784

View File

@ -13,6 +13,7 @@
namespace PrivateBin;
use PrivateBin\Persistence\TrafficLimiter;
use PrivateBin\Persistence\ServerSalt;
use Exception;
/**
@ -183,6 +184,7 @@ class PrivateBin
$this->_request = new Request;
$this->_urlBase = array_key_exists('REQUEST_URI', $_SERVER) ?
htmlspecialchars($_SERVER['REQUEST_URI']) : '/';
ServerSalt::setPath($this->_conf->getKey('dir', 'traffic'));
// set default language
$lang = $this->_conf->getKey('languagedefault');