From 955201cacc94398e1a109549447e4234e7017917 Mon Sep 17 00:00:00 2001 From: Erick Hitter <ehitter@gmail.com> Date: Wed, 26 Feb 2014 13:10:50 -0800 Subject: [PATCH] Correct syntax error introduced in 999f7c41d --- wp-redis-cache/wp-redis-cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-redis-cache/wp-redis-cache.php b/wp-redis-cache/wp-redis-cache.php index d1689c6..2a1d31c 100644 --- a/wp-redis-cache/wp-redis-cache.php +++ b/wp-redis-cache/wp-redis-cache.php @@ -163,7 +163,7 @@ class WP_Redis_Cache { public function register_ui() { // Don't show 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' ) ); -- GitLab