Prechádzať zdrojové kódy

Merge pull request #999 from jonlil/master

fixed filter on sub-entities
Thomas 12 rokov pred
rodič
commit
a32584adf3
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      Filter/Filter.php

+ 1 - 1
Filter/Filter.php

@@ -54,7 +54,7 @@ abstract class Filter implements FilterInterface
            get bound, the default dataMapper is a PropertyPathMapper).
            get bound, the default dataMapper is a PropertyPathMapper).
            So use this trick to avoid any issue.
            So use this trick to avoid any issue.
         */
         */
-        return str_replace('.', '~', $this->name);
+        return str_replace('.', '__', $this->name);
     }
     }
 
 
     /**
     /**