Fix of interface in explorer, tags now working as AND and not OR
This commit is contained in:
@ -363,12 +363,12 @@ jQuery(document).ready(function($)
|
||||
return true;
|
||||
splitTag = tag.split(", ");
|
||||
|
||||
for (t of splitTag)
|
||||
for (t of paramTag)
|
||||
{
|
||||
if (paramTag.includes(t))
|
||||
return true;
|
||||
if (!splitTag.includes(t))
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
function checkPhoto(photo)
|
||||
|
Reference in New Issue
Block a user