- Oopsie when committing.
parent
300f91f4a7
commit
f037130086
|
@ -360,8 +360,9 @@ function block_list($region) {
|
|||
if ($block['path']) {
|
||||
$base = parse_url($base_url);
|
||||
$session = session_name() .'='. session_id();
|
||||
$url = str_replace(array($base['path'], '?'. $session), '', request_uri());
|
||||
$matched = preg_match($block['path'], ereg_replace('^/(\?q=)?', '', $path);
|
||||
$url = str_replace(array($base['path'], '?'. $session), '', request_uri());
|
||||
$url = ereg_replace('^/(\?q=)?', '', $url);
|
||||
$matched = preg_match($block['path'], $url);
|
||||
}
|
||||
else {
|
||||
$matched = true;
|
||||
|
|
|
@ -360,8 +360,9 @@ function block_list($region) {
|
|||
if ($block['path']) {
|
||||
$base = parse_url($base_url);
|
||||
$session = session_name() .'='. session_id();
|
||||
$url = str_replace(array($base['path'], '?'. $session), '', request_uri());
|
||||
$matched = preg_match($block['path'], ereg_replace('^/(\?q=)?', '', $path);
|
||||
$url = str_replace(array($base['path'], '?'. $session), '', request_uri());
|
||||
$url = ereg_replace('^/(\?q=)?', '', $url);
|
||||
$matched = preg_match($block['path'], $url);
|
||||
}
|
||||
else {
|
||||
$matched = true;
|
||||
|
|
Loading…
Reference in New Issue