Actually, this makes more sense.

git-svn-id: https://develop.svn.wordpress.org/trunk@5573 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
rob1n 2007-05-28 17:11:42 +00:00
parent d5816ce68b
commit 5b7256e644
1 changed files with 2 additions and 3 deletions

View File

@ -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() {