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

feature 2057: use $get_data parameter to send GET data.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/site_manager.php

    r6363 r8083  
    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.