Support from Acquia helps fund testing for Drupal Acquia logo

Comments

mikeytown2’s picture

mikeytown2’s picture

Status: Active » Needs review
FileSize
4.65 KB

Patch that allows for this to happen

mikeytown2’s picture

Status: Needs review » Fixed
FileSize
5.13 KB

This patch has been committed to 6.x & 7.x

Example code usage

$url_front = httprl_build_url_self();
$options['method'] = 'POST';
$options['data'] = array(
  'x' => 1,
  'y' => 2,
  'z' => 3,
  'files' => array(
    'core_js' => array(
      'misc/form.js',
      'misc/batch.js',
    ),
  ),
);
httprl_request($url_front, $options);
$request = httprl_send_request();
echo httprl_pr($request);
mikeytown2’s picture

Status: Fixed » Active

The example needs to be added to the readme file as well.

mikeytown2’s picture

Status: Active » Fixed
FileSize
10.15 KB

Patch has been committed to 6.x & 7.x

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.