RM 1.0 how to increase the number of authors in the RM (sidebar) ?

Its hard coded in the controller, so you will have to either edit the file directly or write an addon to handle it.

/library/XenResource/ControllerPublic/Resource.php

find this (around line 107)

PHP:
 'activeAuthors' => $resourceModel->getMostActiveAuthors(5),

Change 5 to the number you want to display.
 
Its hard coded in the controller, so you will have to either edit the file directly or write an addon to handle it.

/library/XenResource/ControllerPublic/Resource.php

find this (around line 107)

PHP:
 'activeAuthors' => $resourceModel->getMostActiveAuthors(5),

Change 5 to the number you want to display.
Thank you Bob :)

@Devs: This option would also appreciated
 
Top Bottom