1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-14 02:34:24 +02:00
This commit is contained in:
Ryan Cramer
2020-07-27 14:29:43 -04:00
parent 475ae801d1
commit 662734e405
2 changed files with 2 additions and 2 deletions

View File

@@ -484,7 +484,7 @@ var InputfieldSelector = {
$value.removeAttr('disabled'); $value.removeAttr('disabled');
} }
if(op.indexOf('!') === 0 && op !== '!=') { if(op && op.indexOf('!') === 0 && op !== '!=') {
fieldPrefix = '!'; fieldPrefix = '!';
op = op.substring(1); op = op.substring(1);
} }

File diff suppressed because one or more lines are too long