Plugin Directory

Changeset 1405236


Ignore:
Timestamp:
04/27/2016 06:31:50 AM (10 years ago)
Author:
jakob42
Message:

fixed https related problem

Location:
reaction-buttons
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • reaction-buttons/tags/2.1.1/reaction_buttons.php

    r1163206 r1405236  
    44   Plugin URI: http://blog.jl42.de/reaction-buttons/
    55   Description: Adds Buttons for very simple and fast feedback to your post. Inspired by Blogger.
    6    Version: 2.1.0
     6   Version: 2.1.1
    77   Author: Jakob Lenfers
    88   Author URI: http://blog.jl42.de
     
    513513        }
    514514        jQuery.ajax({
    515                 type: "post",url: "<?php bloginfo( 'wpurl' ); ?>/wp-admin/admin-ajax.php", dataType: 'json',
     515                type: "post",url: "<?php echo site_url("/wp-admin/admin-ajax.php"); ?>", dataType: 'json',
    516516                    data: { action: 'reaction_buttons_increment_button_php', post_id: post_id, button: button, _ajax_nonce: '<?php echo $nonce; ?>' },
    517517                    success: function(data){
  • reaction-buttons/tags/2.1.1/readme.txt

    r1225021 r1405236  
    33Requires at least: 3.3
    44Tested up to: 4.3
    5 Stable tag: 2.1.0
     5Stable tag: 2.1.1
    66License: GPLv2 or later
    77Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MLX3Z7ZD5AJ4Q
     
    7272
    7373== Changelog ==
     74= 2.1.1 =
     75* fixed https related problem (replaced bloginfo() with site_url())
     76
    7477= 2.1.0 =
    7578* added the possibilities to sort the buttons by votes
  • reaction-buttons/trunk/reaction_buttons.php

    r1163206 r1405236  
    44   Plugin URI: http://blog.jl42.de/reaction-buttons/
    55   Description: Adds Buttons for very simple and fast feedback to your post. Inspired by Blogger.
    6    Version: 2.1.0
     6   Version: 2.1.1
    77   Author: Jakob Lenfers
    88   Author URI: http://blog.jl42.de
     
    513513        }
    514514        jQuery.ajax({
    515                 type: "post",url: "<?php bloginfo( 'wpurl' ); ?>/wp-admin/admin-ajax.php", dataType: 'json',
     515                type: "post",url: "<?php echo site_url("/wp-admin/admin-ajax.php"); ?>", dataType: 'json',
    516516                    data: { action: 'reaction_buttons_increment_button_php', post_id: post_id, button: button, _ajax_nonce: '<?php echo $nonce; ?>' },
    517517                    success: function(data){
  • reaction-buttons/trunk/readme.txt

    r1225021 r1405236  
    33Requires at least: 3.3
    44Tested up to: 4.3
    5 Stable tag: 2.1.0
     5Stable tag: 2.1.1
    66License: GPLv2 or later
    77Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MLX3Z7ZD5AJ4Q
     
    7272
    7373== Changelog ==
     74= 2.1.1 =
     75* fixed https related problem (replaced bloginfo() with site_url())
     76
    7477= 2.1.0 =
    7578* added the possibilities to sort the buttons by votes
Note: See TracChangeset for help on using the changeset viewer.