Tiny code cleanup. intval is used earlier so it is stored properly in the db; we just need true/false.
git-svn-id: http://svn.automattic.com/wordpress/trunk@15305 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
de1776af71
commit
a1ded4c270
|
@ -714,7 +714,7 @@ Thanks!
|
|||
'subdomain_install' => intval( $subdomain_install ),
|
||||
'global_terms_enabled' => global_terms_enabled() ? '1' : '0'
|
||||
);
|
||||
if ( !intval( $subdomain_install ) )
|
||||
if ( ! $subdomain_install )
|
||||
$sitemeta['illegal_names'][] = 'blog';
|
||||
|
||||
$insert = '';
|
||||
|
|
Loading…
Reference in New Issue