You are here

function httprl_set_q in HTTP Parallel Request & Threading Library 7

Same name and namespace in other branches
  1. 6 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 3418
HTTP Parallel Request Library module.

Code

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