Skip to content
Snippets Groups Projects
Commit 955201ca authored by Erick Hitter's avatar Erick Hitter
Browse files

Correct syntax error introduced in 999f7c41

parent 999f7c41
No related branches found
No related tags found
No related merge requests found
...@@ -163,7 +163,7 @@ class WP_Redis_Cache { ...@@ -163,7 +163,7 @@ class WP_Redis_Cache {
public function register_ui() { public function register_ui() {
// Don't show UI // Don't show UI
if ( defined( 'WP_REDIS_CACHE_HIDE_UI' ) && WP_REDIS_CACHE_HIDE_UI ) { if ( defined( 'WP_REDIS_CACHE_HIDE_UI' ) && WP_REDIS_CACHE_HIDE_UI ) {
return return;
} }
add_options_page( 'WP Redis Cache', 'WP Redis Cache', 'manage_options', $this->ns, array( $this, 'render_ui' ) ); add_options_page( 'WP Redis Cache', 'WP Redis Cache', 'manage_options', $this->ns, array( $this, 'render_ui' ) );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment