Home
last modified time | relevance | path

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

/dokuwiki/inc/
H A Dcommon.php494 * @param string|array $urlParameters URL parameters, associative array recommended
501 function wl($id = '', $urlParameters = '', $absolute = false, $separator = '&') argument
504 if (is_array($urlParameters)) {
505 if (isset($urlParameters['rev']) && !$urlParameters['rev']) unset($urlParameters['rev']);
506 if (isset($urlParameters['at']) && $conf['date_at_format']) {
507 $urlParameters['at'] = date($conf['date_at_format'], $urlParameters['at']);
509 $urlParameters = buildURLparams($urlParameters, $separator);
511 $urlParameters = str_replace(',', $separator, $urlParameters);
525 if ($urlParameters) $xlink .= '?' . $urlParameters;
528 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, '&'));