Ignore:
Timestamp:
Dec 11, 2010, 10:37:44 PM (13 years ago)
Author:
patdenice
Message:

merge r8079, r8080, r8082, r8083, r8084 from trunk to branch 2.1
feature 2057: fetchRemote can send POST data
feature 2048: Use POST to send server data
feature 2048: add $confsend_hosting_technical_details parameter
feature 2057: use $get_data parameter to send GET data.
feature 2048: send technical details only to get_version_list.php of PEM API.

Location:
branches/2.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.1

  • branches/2.1/admin/site_manager.php

    r6364 r8086  
    117117      {
    118118        $clf_url = $url.'create_listing_file.php';
    119         $clf_url.= '?action=test';
    120         $clf_url.= '&version='.PHPWG_VERSION;
    121         if (fetchRemote($clf_url, $result))
     119        $get_data = array(
     120          'action' => 'test',
     121          'version' => PHPWG_VERSION,
     122        );
     123        if (fetchRemote($clf_url, $result, $get_data))
    122124        {
    123125          $lines = explode("\r\n", $result);
Note: See TracChangeset for help on using the changeset viewer.