• Resolved kdmcclel

    (@kdmcclel)


    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)
  • Plugin Author CoolHappy

    (@narinder-singh)

    Hi @kdmcclel,
    Thanks for detecting this bug.
    We have fixed this bug. Please just update your installed plugin with the latest version
    Best Regards,

Viewing 1 replies (of 1 total)
  • The topic ‘update_option database spam ‘fa_icons’’ is closed to new replies.