Plugin Directory

Changeset 2781615


Ignore:
Timestamp:
09/07/2022 09:51:10 PM (4 years ago)
Author:
mycholan
Message:

Removed debugging logs

Location:
wc-fields-factory
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wc-fields-factory/tags/4.1.5/includes/wcff_dao.php

    r2781613 r2781615  
    17271727    }
    17281728
    1729     private function migrate_fields($_ptype = "") {   error_log("migrate_fields called for : ". $_ptype);
     1729    private function migrate_fields($_ptype = "") {
    17301730       
    17311731        $this->wcff_key_prefix = $_ptype . "_";
     
    18021802                            }
    18031803                        }
    1804                         error_log("About to migrate field : ". json_encode($field));
     1804                       
    18051805                        update_post_meta($g_post->ID, $fkey, wp_slash(json_encode($field)));                                               
    18061806                    }
  • wc-fields-factory/tags/4.1.5/wcff.php

    r2781613 r2781615  
    117117    }
    118118   
    119     private function cleanup_wcff_post($_ptype) {  error_log("cleanup_wcff_post gets called for : ". $_ptype);
     119    private function cleanup_wcff_post($_ptype) {
    120120       
    121121        /* Fetch the group posts */
     
    182182                        }
    183183                       
    184                         if ($flaQ) { error_log("About to restore : ". json_encode($field));
     184                        if ($flaQ) {
    185185                            update_post_meta($g_post->ID, $fkey, wp_slash(json_encode($field)));
    186186                        }
  • wc-fields-factory/trunk/includes/wcff_dao.php

    r2781613 r2781615  
    17271727    }
    17281728
    1729     private function migrate_fields($_ptype = "") {  error_log("migrate_fields called for : ". $_ptype);
     1729    private function migrate_fields($_ptype = "") {
    17301730       
    17311731        $this->wcff_key_prefix = $_ptype . "_";
     
    18021802                            }
    18031803                        }
    1804                         error_log("About to migrate field : ". json_encode($field));
     1804                       
    18051805                        update_post_meta($g_post->ID, $fkey, wp_slash(json_encode($field)));                                               
    18061806                    }
  • wc-fields-factory/trunk/wcff.php

    r2781613 r2781615  
    117117    }
    118118   
    119     private function cleanup_wcff_post($_ptype) {  error_log("cleanup_wcff_post gets called for : ". $_ptype);
     119    private function cleanup_wcff_post($_ptype) {
    120120       
    121121        /* Fetch the group posts */
     
    182182                        }
    183183                       
    184                         if ($flaQ) { error_log("About to restore : ". json_encode($field));
     184                        if ($flaQ) {
    185185                            update_post_meta($g_post->ID, $fkey, wp_slash(json_encode($field)));
    186186                        }
Note: See TracChangeset for help on using the changeset viewer.