mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
Fix warning in PHP 8.0
This commit is contained in:
parent
d78ba8c77c
commit
f1c839042c
1 changed files with 2 additions and 2 deletions
|
|
@ -114,11 +114,11 @@ class FrontEndFileHandler extends Handler
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (preg_match('/IE/i', $args[2]))
|
if (isset($args[2]) && preg_match('/IE/i', $args[2]))
|
||||||
{
|
{
|
||||||
$source_hint = '';
|
$source_hint = '';
|
||||||
}
|
}
|
||||||
else
|
elseif (isset($args[2]) && $args[2] !== '')
|
||||||
{
|
{
|
||||||
$source_hint = $args[2];
|
$source_hint = $args[2];
|
||||||
$args[2] = '';
|
$args[2] = '';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue