mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10110] Remove tab from empty lines
PHPBB3-10110
This commit is contained in:
parent
9891f5a8d2
commit
ddda094d3a
1 changed files with 6 additions and 6 deletions
|
@ -48,7 +48,7 @@ if (!defined('PHPBB_ACM_REDIS'))
|
||||||
class acm extends acm_memory
|
class acm extends acm_memory
|
||||||
{
|
{
|
||||||
var $extension = 'redis';
|
var $extension = 'redis';
|
||||||
|
|
||||||
var $redis;
|
var $redis;
|
||||||
|
|
||||||
function acm()
|
function acm()
|
||||||
|
@ -62,26 +62,26 @@ class acm extends acm_memory
|
||||||
$parts = explode('/', $server);
|
$parts = explode('/', $server);
|
||||||
$this->redis->connect(trim($parts[0]), trim($parts[1]));
|
$this->redis->connect(trim($parts[0]), trim($parts[1]));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (defined('PHPBB_ACM_REDIS_PASSWORD'))
|
if (defined('PHPBB_ACM_REDIS_PASSWORD'))
|
||||||
{
|
{
|
||||||
if (!$this->redis->auth(PHPBB_ACM_REDIS_PASSWORD))
|
if (!$this->redis->auth(PHPBB_ACM_REDIS_PASSWORD))
|
||||||
{
|
{
|
||||||
global $acm_type;
|
global $acm_type;
|
||||||
|
|
||||||
trigger_error("Incorrect password for the ACM module $acm_type.", E_USER_ERROR);
|
trigger_error("Incorrect password for the ACM module $acm_type.", E_USER_ERROR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->redis->setOption(Redis::OPT_SERIALIZER, Redis::SERIALIZER_PHP);
|
$this->redis->setOption(Redis::OPT_SERIALIZER, Redis::SERIALIZER_PHP);
|
||||||
$this->redis->setOption(Redis::OPT_PREFIX, $this->key_prefix);
|
$this->redis->setOption(Redis::OPT_PREFIX, $this->key_prefix);
|
||||||
|
|
||||||
if (defined('PHPBB_ACM_REDIS_DB'))
|
if (defined('PHPBB_ACM_REDIS_DB'))
|
||||||
{
|
{
|
||||||
if (!$this->redis->select(PHPBB_ACM_REDIS_DB))
|
if (!$this->redis->select(PHPBB_ACM_REDIS_DB))
|
||||||
{
|
{
|
||||||
global $acm_type;
|
global $acm_type;
|
||||||
|
|
||||||
trigger_error("Incorrect database for the ACM module $acm_type.", E_USER_ERROR);
|
trigger_error("Incorrect database for the ACM module $acm_type.", E_USER_ERROR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue