You change the php code and language files.
Language file forums_public_boards.php from minutes to hours.
change:
'active_users' => "(in the past %s minutes)",
to:
'active_users' => "(in the past %s hours)",
edit file admin\applications\forums\modules_public\forums\bo ards.php

change:
$this->lang->words['active_users'] = sprintf( $this->lang->words['active_users'], $this->settings['au_cutoff'] );
to:
$this->lang->words['active_users'] = sprintf( $this->lang->words['active_users'], $this->settings['au_cutoff']/60 );