Changeset 24255 for trunk/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 05/14/2013 06:22:54 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/class-wp-xmlrpc-server.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-xmlrpc-server.php
r24207 r24255 563 563 $_term = get_object_vars( $_term ); 564 564 565 // For Intergers which may be largeer than XMLRPC supports ensure we return strings.565 // For integers which may be larger than XML-RPC supports ensure we return strings. 566 566 $_term['term_id'] = strval( $_term['term_id'] ); 567 567 $_term['term_group'] = strval( $_term['term_group'] ); … … 569 569 $_term['parent'] = strval( $_term['parent'] ); 570 570 571 // Count we are happy to return as an Integer because people really shouldn't use Terms that much.571 // Count we are happy to return as an integer because people really shouldn't use terms that much. 572 572 $_term['count'] = intval( $_term['count'] ); 573 573
Note: See TracChangeset
for help on using the changeset viewer.