You are here

function httprl_set_q in HTTP Parallel Request & Threading Library 6

Same name and namespace in other branches
  1. 7 httprl.module \httprl_set_q()

Sets the global $_GET['q'] parameter.

Parameters

string $q: Internal URL.

1 call to httprl_set_q()
httprl_async_page in ./httprl.async.inc
Menu Callback; run given function.

File

./httprl.module, line 3351
HTTP Parallel Request Library module.

Code

function httprl_set_q($q) {
  $_GET['q'] = $q;
}