Plugin Directory

Changeset 2015211


Ignore:
Timestamp:
01/19/2019 06:58:47 AM (7 years ago)
Author:
deller21
Message:

fix bugs

Location:
recobox/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • recobox/trunk/README.txt

    r2014439 r2015211  
    55Requires at least: 3.0
    66Tested up to: 4.9.5
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • recobox/trunk/admin/class-rcb-comments-admin.php

    r2014437 r2015211  
    177177
    178178        $response = wp_remote_post(
    179             'http://widgets.localhost/api/1.0/channels/lists',
     179            'https://recobox.ru/api/1.0/channels/lists',
    180180            [
    181181                'body' => $toRecoboxArray
     
    279279
    280280        $response = wp_remote_post(
    281             'http://widgets.localhost/api/1.0/comments/lists',
     281            'https://recobox.ru/api/1.0/comments/lists',
    282282            [
    283283                'body' => $toRecoboxArray
     
    529529        if (count($toRecoboxArray['comments']) > 0) {
    530530            $response = wp_remote_post(
    531                 'http://widgets.localhost/api/1.0/comments/add',
     531                'https://recobox.ru/api/1.0/comments/add',
    532532                [
    533533                    'body' => $toRecoboxArray
  • recobox/trunk/rcb-comments.php

    r2014437 r2015211  
    33/**
    44 * @link              https://recobox.ru
    5  * @since             1.0.0
     5 * @since             1.0.1
    66 * @package           Rcb_Comments
    77 *
     
    1010 * Plugin URI:        https://recobox.ru
    1111 * Description:       Система комментирования с различными вариантами социальной аутентификации(ВКонтакте, Одноклассники, FaceBook, Google+ и т.д.).
    12  * Version:           1.0.0
     12 * Version:           1.0.1
    1313 * Author:            Recobox
    1414 * Author URI:        https://profiles.wordpress.org/deller21
     
    2929 * Rename this for your plugin and update it as you release new versions.
    3030 */
    31 define( 'RCB_COMMENTS_VERSION', '1.0.0' );
     31define( 'RCB_COMMENTS_VERSION', '1.0.1' );
    3232
    3333/**
     
    6565 * not affect the page life cycle.
    6666 *
    67  * @since    1.0.0
     67 * @since    1.0.1
    6868 */
    6969function rcb_comments_run() {
Note: See TracChangeset for help on using the changeset viewer.