Index: trunk/phase3/includes/api/ApiUpload.php |
— | — | @@ -89,7 +89,7 @@ |
90 | 90 | } else if( $this->mParams['httpstatus'] && $this->mParams['sessionkey'] ){ |
91 | 91 | // return the status of the given upload session_key: |
92 | 92 | if( !isset( $_SESSION['wsDownload'][ $this->mParams['sessionkey'] ] ) ){ |
93 | | - return $this->dieUsageMsg( array( 'error' => 'invalid-session-key' ) ); |
| 93 | + return $this->dieUsageMsg( array( 'invalid-session-key' ) ); |
94 | 94 | } |
95 | 95 | $sd = & $_SESSION['wsDownload'][$this->mParams['sessionkey']]; |
96 | 96 | // keep passing down the upload sessionkey |