fix passing nulll to parameter (thx @brol )
This commit is contained in:
parent
a1c90350d1
commit
d815805fff
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ class shortArchivesWidgets
|
|||
}
|
||||
|
||||
$active_year = null;
|
||||
if ((dcCore::app()->url->type == 'archive') && preg_match('`^/([0-9]{4})/([0-9]{2})$`', dcCore::app()->url->args, $matches)) {
|
||||
if ((dcCore::app()->url->type == 'archive') && preg_match('`^/([0-9]{4})/([0-9]{2})$`', (string) dcCore::app()->url->args, $matches)) {
|
||||
$active_year = $matches[1];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue