Plugin Directory

Changeset 2045730


Ignore:
Timestamp:
03/07/2019 06:39:30 AM (7 years ago)
Author:
buntisoft
Message:

Fixed: code bug

Location:
insta-gallery
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • insta-gallery/trunk/app/inc/IGIASpi.php

    r2032907 r2045730  
    9393        $response = $this->spider($url);
    9494        if (empty($response)) {
    95             return $this->message();
     95            return $this->message;
    9696        }
    9797        $response = json_decode($response);
  • insta-gallery/trunk/app/views/account.php

    r2032907 r2045730  
    8585            </figure>
    8686    <?php  else : ?>
    87          <div class="notice notice-warning">
    88                 <p><?php $iispi->message() ?></p>
    89             </div>
     87         <?php $msg = $iispi->getMessage();
     88        if(!empty($msg)){ ?>
     89            <div class="notice notice-warning">
     90                <p><strong><?php echo $msg; ?></strong></p>
     91            </div>
     92        <?php } ?>
    9093    <?php endif; ?>
    9194        <div style="text-align: center;">
  • insta-gallery/trunk/insta-gallery.php

    r2044837 r2045730  
    1010 * Text Domain: insta-gallery
    1111 * Domain Path: /languages/
    12  * Version: 2.1.6
     12 * Version: 2.1.7
    1313 */
    1414
     
    2525
    2626// global constants
    27 define('INSGALLERY_VER', '2.1.6');
     27define('INSGALLERY_VER', '2.1.7');
    2828define('INSGALLERY_PRODUCTION', true);
    2929
  • insta-gallery/trunk/readme.txt

    r2044837 r2045730  
    55Requires PHP: 5.3
    66Tested up to: 5.0
    7 Stable tag: 2.1.6
     7Stable tag: 2.1.7
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7171
    7272== Changelog ==
     73= 2.1.7 =
     74* Fixed: small code bug
     75
    7376= 2.1.6 =
    7477* Fixed: connection issue on new access token update
     
    234237
    235238== Upgrade Notice ==
     239= 2.1.7 =
     240small code bug fixed
     241
    236242= 2.1.6 =
    237243connection issue solved for new token update
Note: See TracChangeset for help on using the changeset viewer.