Merge pull request #1283 from phil-davis/patch-16

This commit is contained in:
Renato Botelho 2014-09-16 14:12:41 -03:00
commit e5d2c6605b
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ function match_filter_field($flent, $fields) {
foreach ($fields as $key => $field) {
if ($field == "All")
continue;
if ((strpos($$field, '!') === 0)) {
if ((strpos($field, '!') === 0)) {
$field = substr($field, 1);
if (strtolower($key) == 'act') {
if (in_arrayi($flent[$key], explode(" ", $field)))