Development

Changeset 18635

You must first sign up to be able to contribute.

Changeset 18635

Show
Ignore:
Timestamp:
05/26/09 09:51:16 (4 years ago)
Author:
jerome.etienne
Message:

- JSON: bug fix. removed a trailling ;

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfWebRPCPlugin/lib/BaseWebRPCActions.class.php

    r18604 r18635  
    132132      // return the $iframe_url as text/plain 
    133133      $this->getResponse()->setHttpHeader('Content-Type', 'application/json'); 
    134       return $this->renderText($resp_json.";"); 
     134      return $this->renderText($resp_json); 
    135135    } 
    136136  }