Suppress notices in index.php running under lighttpd
This commit is contained in:
parent
e365e709c5
commit
ab0ced4dfd
10
index.php
10
index.php
|
@ -210,12 +210,12 @@ function main()
|
||||||
if ($_lighty_url['path'] != '/index.php' && $_lighty_url['path'] != '/') {
|
if ($_lighty_url['path'] != '/index.php' && $_lighty_url['path'] != '/') {
|
||||||
$_lighty_path = preg_replace('/^'.preg_quote(common_config('site', 'path')).'\//', '', substr($_lighty_url['path'], 1));
|
$_lighty_path = preg_replace('/^'.preg_quote(common_config('site', 'path')).'\//', '', substr($_lighty_url['path'], 1));
|
||||||
$_SERVER['QUERY_STRING'] = 'p='.$_lighty_path;
|
$_SERVER['QUERY_STRING'] = 'p='.$_lighty_path;
|
||||||
if ($_lighty_url['query']) {
|
if (isset($_lighty_url['query']) && $_lighty_url['query'] != '') {
|
||||||
$_SERVER['QUERY_STRING'] .= '&'.$_lighty_url['query'];
|
$_SERVER['QUERY_STRING'] .= '&'.$_lighty_url['query'];
|
||||||
}
|
parse_str($_lighty_url['query'], $_lighty_query);
|
||||||
parse_str($_lighty_url['query'], $_lighty_query);
|
foreach ($_lighty_query as $key => $val) {
|
||||||
foreach ($_lighty_query as $key => $val) {
|
$_GET[$key] = $_REQUEST[$key] = $val;
|
||||||
$_GET[$key] = $_REQUEST[$key] = $val;
|
}
|
||||||
}
|
}
|
||||||
$_GET['p'] = $_REQUEST['p'] = $_lighty_path;
|
$_GET['p'] = $_REQUEST['p'] = $_lighty_path;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user