DrYontem
Well-known member
Hi All,
I want to modify a line in a ControllerPublic_X file using via listener
How can i do that?
for example (that's not mine problem, it is just for example)
XenForo_ControllerPublic_Member::actionIndex
original line
i want to modify like that
that is just example
regards...
I want to modify a line in a ControllerPublic_X file using via listener
How can i do that?
for example (that's not mine problem, it is just for example)
XenForo_ControllerPublic_Member::actionIndex
original line
PHP:
$latestUsers = $userModel->getLatestUsers($criteria, array('limit' => 8));
i want to modify like that
PHP:
$latestUsers = $userModel->getLatestUsers($criteria, array('limit' => 100));
that is just example
regards...