Plugin Directory

Changeset 1637710


Ignore:
Timestamp:
04/14/2017 02:12:54 PM (9 years ago)
Author:
bobintercom
Message:

Secure Mode => Identity Verification

File:
1 edited

Legend:

Unmodified
Added
Removed
  • intercom/trunk/bootstrap.php

    r1637675 r1637710  
    66Author: Intercom
    77Author URI: https://www.intercom.io
    8 Version: 2.5.12
     8Version: 2.5.13
    99 */
    1010
     
    510510{
    511511  $options = get_option('intercom');
     512  $identity_verification = isset($options['identity_verification']) ? $options['identity_verification'] : $options['secure_mode'];
    512513  $snippet_settings = new IntercomSnippetSettings(
    513514    array("app_id" => WordPressEscaper::escJS($options['app_id'])),
    514515    WordPressEscaper::escJS($options['secret']),
    515     WordPressEscaper::escJS($options['identity_verification']),
     516    WordPressEscaper::escJS($identity_verification),
    516517    wp_get_current_user()
    517518  );
Note: See TracChangeset for help on using the changeset viewer.