Skip to content

Commit

Permalink
DB parameter hasn't correctly named
Browse files Browse the repository at this point in the history
Correct Redis DB parameter that hasn't correctly named
  • Loading branch information
andrepereirasilva committed Jun 27, 2015
1 parent 4defc7b commit 4c7928d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -816,7 +816,7 @@
size="5" />

<field
name="session_redis_server_db"
name="session_redis_db"
type="text"
default="0"
label="COM_CONFIG_FIELD_REDIS_DB_LABEL"
Expand Down
2 changes: 1 addition & 1 deletion libraries/joomla/session/storage/redis.php
Expand Up @@ -46,7 +46,7 @@ public function __construct($options = array())
'port' => $config->get('session_redis_server_port', 6379),
'persist' => $config->get('session_redis_persist', 1),
'weight' => $config->get('session_redis_weight', 1),
'db' => $config->get('session_redis_database', 0)
'db' => $config->get('session_redis_db', 0)
)
);

Expand Down

0 comments on commit 4c7928d

Please sign in to comment.