Changeset 5082 for trunk/xmlrpc.php
- Timestamp:
- 03/22/2007 08:52:29 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xmlrpc.php
r5074 r5082 362 362 // Items not escaped here will be escaped in editPost. 363 363 $blog_id = $args[0]; 364 $page_id = $this->escape( $args[1]);364 $page_id = $this->escape((int) $args[1]); 365 365 $username = $this->escape($args[2]); 366 366 $password = $this->escape($args[3]); … … 823 823 $this->escape($args); 824 824 825 $post_ID = $args[1];825 $post_ID = (int) $args[1]; 826 826 $user_login = $args[2]; 827 827 $user_pass = $args[3]; … … 1065 1065 $this->escape($args); 1066 1066 1067 $post_ID = $args[0];1067 $post_ID = (int) $args[0]; 1068 1068 $user_login = $args[1]; 1069 1069 $user_pass = $args[2];
Note: See TracChangeset
for help on using the changeset viewer.