summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/class.json-api.php')
-rw-r--r--plugins/jetpack/class.json-api.php16
1 files changed, 2 insertions, 14 deletions
diff --git a/plugins/jetpack/class.json-api.php b/plugins/jetpack/class.json-api.php
index 58d1de0f..11d88864 100644
--- a/plugins/jetpack/class.json-api.php
+++ b/plugins/jetpack/class.json-api.php
@@ -174,20 +174,8 @@ class WPCOM_JSON_API {
// Normalize path and extract API version
$this->path = untrailingslashit( $this->path );
preg_match( '#^/rest/v(\d+(\.\d+)*)#', $this->path, $matches );
-
- // HACK Alert!
- // In order to workaround a bug in the iOS 5.6 release we need to handle /rest/sites/new as if it was
- // /rest/v1.1/sites/new
- if ( $this->path === '/rest/sites/new' ) {
- $this->version = '1.1';
- $this->path = '/sites/new';
- } else if ( $this->path === '/rest/users/new' ) {
- $this->version = '1.1';
- $this->path = '/users/new';
- } else {
- $this->path = substr( $this->path, strlen( $matches[0] ) );
- $this->version = $matches[1];
- }
+ $this->path = substr( $this->path, strlen( $matches[0] ) );
+ $this->version = $matches[1];
$allowed_methods = array( 'GET', 'POST' );
$four_oh_five = false;