0
votes

Redirector plugin created by Shaun McCormick is a little outdated and I noticed that a bug appeared where not all resources showed up. enter image description here

2

2 Answers

0
votes

I first went to the repository to commit a fix in but the file annoyingly isn't being tracked. https://github.com/splittingred/Redirector

Fix:

Open: /core/componenets/redirector/processors/mgr/resources/getlist.class.php

Then add an initiator method:

public function initialize() {
    $this->setDefaultProperties(array(
        'start' => 0,
        'limit' => 0,
        'sort' => $this->defaultSortField,
        'dir' => $this->defaultSortDirection,
        'combo' => false,
        'query' => '',
    ));

    return true;
}

And that should be it. All resources will now show up.

0
votes

Your problem is that you dont know about filtering.

  1. all resouces list.

enter image description here

  1. filtering

enter image description here

enter image description here