Turn string to upper. Props Donncha. fixes #4350

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

View File

@ -754,7 +754,7 @@ function get_num_queries() {
}
function bool_from_yn($yn) {
if ($yn == 'Y') return 1;
if (strtoupper( $yn ) == 'Y') return 1;
return 0;
}