mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 16:21:26 +01:00
Actually, this makes more sense.
git-svn-id: http://svn.automattic.com/wordpress/trunk@5573 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
673cab8183
commit
6800fa5564
@ -753,9 +753,8 @@ function get_num_queries() {
|
||||
return $wpdb->num_queries;
|
||||
}
|
||||
|
||||
function bool_from_yn($yn) {
|
||||
if (strtoupper( $yn ) == 'Y') return 1;
|
||||
return 0;
|
||||
function bool_from_yn( $yn ) {
|
||||
return ( strtolower( $yn ) == 'y' );
|
||||
}
|
||||
|
||||
function do_feed() {
|
||||
|
Loading…
Reference in New Issue
Block a user