• Line 592 function crony_add_log
    code
    return $wpdb->query($wpdb->prepare(“INSERT INTO " . CRONY_TBL . "logs (crony_id, output, real_time, start, end) VALUES (%d, %s, %s, %s, %s)”, array($id, $end)));

    should surely be :
    return $wpdb->query($wpdb->prepare(“INSERT INTO " . CRONY_TBL . "logs (crony_id, output, real_time, start, end) VALUES (%d, %s, %s, %s, %s)”, array($id, $output, $real, $start, $end)));

    in order to add a log.

    Don’t you think?

  • The topic ‘Log Update’ is closed to new replies.