Index: wp-includes/post.php
===================================================================
--- wp-includes/post.php	(revision 21494)
+++ wp-includes/post.php	(working copy)
@@ -1380,18 +1380,7 @@
 
 function post_type_supports( $post_type, $feature ) {
 	global $_wp_post_type_features;
-
-	if ( !isset( $_wp_post_type_features[$post_type][$feature] ) )
-		return false;
-
-	// If no args passed then no extra checks need be performed
-	if ( func_num_args() <= 2 )
-		return true;
-
-	// @todo Allow pluggable arg checking
-	//$args = array_slice( func_get_args(), 2 );
-
-	return true;
+	return ( isset( $_wp_post_type_features[$post_type][$feature] ) );
 }
 
 /**
