mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-07 09:49:04 +00:00
Remove unnecessary ternary operators such as (expr) ? true : false.
git-svn-id: https://develop.svn.wordpress.org/trunk@13769 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user