copy_hitcount_to_live()

Parameters

This function accepts no parameters.

Location

include/resource_functions.php lines 7229 to 7237

Definition

 
function copy_hitcount_to_live()
{
    
# Also update the resource table
    # greatest() is used so the value is taken from the hit_count column in the event that new_hit_count is zero to support installations that did not previously have a new_hit_count column (i.e. upgrade compatability)
    
ps_query("update resource set hit_count=greatest(hit_count,new_hit_count)");

    
# Also now update resource_node_hitcount())
    
ps_query("update resource_node set hit_count=new_hit_count");
}

This article was last updated 22nd June 2025 19:05 Europe/London time based on the source file dated 5th June 2025 10:55 Europe/London time.