POP3::update_timer()publicWP 1.0

Method of the class: POP3{}

No Hooks.

Return

null. Nothing (null).

Usage

$POP3 = new POP3();
$POP3->update_timer ();

POP3::update_timer() code WP 6.5.2

function update_timer () {
    if(function_exists("set_time_limit")){
        set_time_limit($this->TIMEOUT);
    }
    return true;
}