From ae16cec9fb6a98f7c654dbe3bb09684958fa5eff Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Wed, 9 Sep 2015 00:47:31 +0000 Subject: [PATCH] In `wpdb::get_col_length()`, the final `return false` is unreachable since the default `switch` case returns. See #33491. git-svn-id: https://develop.svn.wordpress.org/trunk@33956 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/wp-db.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wp-includes/wp-db.php b/src/wp-includes/wp-db.php index f0622e3ebb..efd66f7f2f 100644 --- a/src/wp-includes/wp-db.php +++ b/src/wp-includes/wp-db.php @@ -2521,8 +2521,6 @@ class wpdb { default: return false; } - - return false; } /**