Home
last modified time | relevance | path

Searched refs:urlParameters (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/inc/
H A Dcommon.php496 * @param string|array $urlParameters URL parameters, associative array recommended
503 function wl($id = '', $urlParameters = '', $absolute = false, $separator = '&') argument
506 if (is_array($urlParameters)) {
507 if (isset($urlParameters['rev']) && !$urlParameters['rev']) unset($urlParameters['rev']);
508 if (isset($urlParameters['at']) && $conf['date_at_format']) {
509 $urlParameters['at'] = date($conf['date_at_format'], $urlParameters['at']);
511 $urlParameters = buildURLparams($urlParameters, $separator);
513 $urlParameters = str_replace(',', $separator, $urlParameters);
527 if ($urlParameters) $xlink .= '?' . $urlParameters;
530 if ($urlParameters) $xlink .= '?' . $urlParameters;
[all …]
H A Dpageutils.php99 $urlParameters = $_GET;
100 if (isset($urlParameters['id'])) {
101 unset($urlParameters['id']);
103 send_redirect(wl($id, $urlParameters, true, '&'));