Remove unnecessary ternary operators such as (expr) ? true : false.

git-svn-id: http://svn.automattic.com/wordpress/trunk@13769 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin
2010-03-19 21:15:00 +00:00
parent 64f48fd0bc
commit 8c8bf5039f
14 changed files with 22 additions and 25 deletions

View File

@@ -75,7 +75,7 @@ function display_header() {
*/
function display_setup_form( $error = null ) {
global $wpdb;
$user_table = ( $wpdb->get_var("SHOW TABLES LIKE '$wpdb->users'") != null ) ? true : false;
$user_table = ( $wpdb->get_var("SHOW TABLES LIKE '$wpdb->users'") != null );
// Ensure that Blogs appear in search engines by default
$blog_public = 1;