fixed bug in filterGIDs(..)...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2014-01-14 18:15:13 +04:00
parent 876a6cb414
commit b77e8a91a2

View File

@ -1518,7 +1518,10 @@ function filterGIDs(filter, gids, data, images){
// if key does not exist...
if(val == null){
return exp ? false : true
if(exp == false){
continue
}
return false
}
val = typeof(val) == typeof('str') ? val.trim() : val