View difference between Paste ID: 8zZxbTLz and Ff4YX23y
SHOW: | | - or go back to the newest paste.
1
    function get_items_by_app($id){
2
        global $api;
3-
        $items = $api->item->getItems($id);
3+
        $items = $api->item->getItems($id, array('limit' => 500));
4
        
5
        if($items) 
6
            return $items;
7
        else
8
            return false;
9
    }