mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
substr_compare() 사용에 대한 보완
This commit is contained in:
parent
833d218a66
commit
4d9e68b9e4
5 changed files with 20 additions and 4 deletions
|
|
@ -1015,7 +1015,7 @@ function removeSrcHack($match)
|
|||
{
|
||||
foreach($m[1] as $idx => $name)
|
||||
{
|
||||
if(substr_compare($name, 'on', 0, 2) === 0)
|
||||
if(isset($name) && substr_compare($name, 'on', 0, 2) === 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue