]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Issue #3025: string -> boolean for profile_background_tile entry in JSON user results...
authorBrion Vibber <brion@pobox.com>
Mon, 7 Feb 2011 22:38:35 +0000 (14:38 -0800)
committerBrion Vibber <brion@pobox.com>
Mon, 7 Feb 2011 22:38:35 +0000 (14:38 -0800)
This entry was using the strings 'true' and 'false' instead of literal booleans, which could confuse clients expecting literal booleans as in other places and on Twitter in this place.

lib/apiaction.php

index b6e8f87b6de0337b71feafce6f44291d5b3ee620..5d70425720bfb21f2e9eb308607cd3d62b8614d5 100644 (file)
@@ -263,8 +263,7 @@ class ApiAction extends Action
             ? Design::url($design->backgroundimage) : '';
 
         $twitter_user['profile_background_tile']
-            = empty($design->disposition)
-            ? '' : ($design->disposition & BACKGROUND_TILE) ? 'true' : 'false';
+            = (bool)($design->disposition & BACKGROUND_TILE);
 
         $twitter_user['statuses_count'] = $profile->noticeCount();