Skip to content

Commit

Permalink
Merge branch 'release/1.8.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
atwellpub committed Apr 13, 2018
2 parents 7d9da46 + 49742d4 commit ab80b8c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions core/mailer/classes/class.ajax.listeners.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ public static function save_email() {
/* save all post vars as meta */
foreach ($_POST as $key => $value) {

switch($key) {
case 'subject':
$value = str_replace('"' , '"' , $value);
break;
}

if ( substr( $key , 0 , 8 ) == 'inbound_' ){
$key = str_replace( 'inbound_' , '' , $key );
$email_settings[ $key ] = $value;
Expand Down
2 changes: 1 addition & 1 deletion core/mailer/classes/class.enqueues.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public static function load_inbound_email_post_type_enqueues( $hook ) {

/* Enqueue select2 support */
wp_enqueue_script('select2', INBOUNDNOW_SHARED_URLPATH . 'assets/includes/Select2/select2.min.js');
wp_enqueue_style('select2', INBOUNDNOW_SHARED_URLPATH . 'assets/includes/Select2/select2.css');
wp_enqueue_style('select2', INBOUNDNOW_SHARED_URLPATH . 'assets/includes/Select2/select2.min.css');
wp_enqueue_style('select2-bootstrap', INBOUNDNOW_SHARED_URLPATH . 'assets/includes/Select2/select2.css');

/* Enqueue Sweet Alert support */
Expand Down
2 changes: 1 addition & 1 deletion core/mailer/classes/class.metaboxes.inbound-email.php
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,7 @@ public static function render_settings($settings_key, $custom_fields, $post) {

break;
case 'text':
echo '<input type="text" class="' . $option_class . ' form-control" name="' . $field_id . '" id="' . $field_id . '" value="' . str_replace('"', '\"',$meta ). '" size="30" />
echo '<input type="text" class="' . $option_class . ' form-control" name="' . $field_id . '" id="' . $field_id . '" value="' . str_replace('"', '&quot;',$meta ). '" size="30" />
<div class="inbound-tooltip" title="' . $field['description'] . '"></div>';
break;
case 'number':
Expand Down
4 changes: 2 additions & 2 deletions inbound-pro.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin URI: http://www.inboundnow.com/
Description: Professional Inbound Marketing Suite for WordPress
Author: InboundWP LLC
Version: 1.8.7.9
Version: 1.8.8.1
Author URI: http://www.inboundnow.com/
Text Domain: inbound-pro
Expand Down Expand Up @@ -96,7 +96,7 @@ public function __construct() {
*/
private static function define_constants() {

define('INBOUND_PRO_CURRENT_VERSION', '1.8.7.9' );
define('INBOUND_PRO_CURRENT_VERSION', '1.8.8.1' );
define('INBOUND_PRO_STABLE_VERSION', '1.8.6.7' );
define('INBOUND_PRO_TRANSLATIONS_VERSION', '1.30.17' );
define('INBOUND_PRO_URLPATH', plugin_dir_url( __FILE__ ));
Expand Down

0 comments on commit ab80b8c

Please sign in to comment.