luku

Results 15 issues of luku

Problem: ``` php echo get_db()->getTable('Item')->getSelectForFindBy(array('item_type_id' => null)); ``` Expected: ``` sql SELECT items.* FROM items WHERE item_type_id IS NULL ``` Actual: ``` sql SELECT items.* FROM items WHERE item_type_id =...

This partially solves situation, where changing item type of an item keeps already filled information in elements **not associated** with new item type. The problem is mostly apparent when searching,...

Fix #835 @zerocrates point makes sense

Hi, this could be possible way to display search filter for multiple item types and/or multiple collections. However, for collections it requires PR #626 to be accepted first. Also not...

Multiple file input is not supported on IE9=< and on Android (works in Chrome on Android 5+), so it feels like very practical enhancement for newer browsers.

This is solution for issue #764 It also adds possibility to update search index (instead of always creating new from scratch). The update can be accomplished in 2 ways: 1....

Hi, this issue took me really long time and pain to figure out. So hopefully it saves time for others. The problem is with forms where submit button has `name="submit"`....

There's a problem with `$this->_helper->redirector('browse', 'items', null, $params);` and multidimensional `$params` array, such as advanced search criteria, so this pull is fixing it. Besides, it redirects back to selected items,...

Adding possibility to display item search filters as links, and on click removing the filter. It is extending PR #702 BTW: I saw issue #705 which may change the way...