update_option database spam ‘fa_icons’
-
fa_icons option gets regenerated constantly due to bas ctl_fa_init() function in fa-icons-class.php
function ctl_fa_init(){ $old_version= get_option("cool-timelne-v"); if( isset($old_version) || version_compare($old_version, CTLPV , '<' ) ){ delete_option('fa_icons'); } }
should be:
function ctl_fa_init(){ $old_version= get_option("cool-timelne-v"); if( !isset($old_version) || version_compare($old_version, COOL_TIMELINE_CURRENT_VERSION , '<' ) ){ delete_option('fa_icons'); } }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘update_option database spam ‘fa_icons’’ is closed to new replies.