for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dokuwiki\Action;
/**
* Class Recent
*
* The recent changes view
* @package dokuwiki\Action
*/
class Recent extends AbstractAction {
/** @inheritdoc */
public function minimumPermission() {
return AUTH_NONE;
}
public function preProcess() {
global $INPUT;
$show_changes = $INPUT->str('show_changes');
if(!empty($show_changes)) {
set_doku_pref('show_changes', $show_changes);
public function tplContent() {
html_recent((int) $INPUT->extract('first')->int('first'));