In the .php file find the line:
PHP Code:
$liftdate = TIMENOW + (86400 * $days);
86400 is the number of seconds in 1 day (60 * 60 * 24)... Change it to the number of seconds in one minute (60) to make the ban in minutes rather than days.
Just keep in mind the scheduled task that unbans people I think runs only once every hour by default so a "5 minute" ban will last until the scheduled task runs after the ban is up.