Changeset 2045730
- Timestamp:
- 03/07/2019 06:39:30 AM (7 years ago)
- Location:
- insta-gallery
- Files:
-
- 3 added
- 4 edited
-
nbproject (added)
-
nbproject/project.properties (added)
-
nbproject/project.xml (added)
-
trunk/app/inc/IGIASpi.php (modified) (1 diff)
-
trunk/app/views/account.php (modified) (1 diff)
-
trunk/insta-gallery.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
insta-gallery/trunk/app/inc/IGIASpi.php
r2032907 r2045730 93 93 $response = $this->spider($url); 94 94 if (empty($response)) { 95 return $this->message ();95 return $this->message; 96 96 } 97 97 $response = json_decode($response); -
insta-gallery/trunk/app/views/account.php
r2032907 r2045730 85 85 </figure> 86 86 <?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 } ?> 90 93 <?php endif; ?> 91 94 <div style="text-align: center;"> -
insta-gallery/trunk/insta-gallery.php
r2044837 r2045730 10 10 * Text Domain: insta-gallery 11 11 * Domain Path: /languages/ 12 * Version: 2.1. 612 * Version: 2.1.7 13 13 */ 14 14 … … 25 25 26 26 // global constants 27 define('INSGALLERY_VER', '2.1. 6');27 define('INSGALLERY_VER', '2.1.7'); 28 28 define('INSGALLERY_PRODUCTION', true); 29 29 -
insta-gallery/trunk/readme.txt
r2044837 r2045730 5 5 Requires PHP: 5.3 6 6 Tested up to: 5.0 7 Stable tag: 2.1. 67 Stable tag: 2.1.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 71 71 72 72 == Changelog == 73 = 2.1.7 = 74 * Fixed: small code bug 75 73 76 = 2.1.6 = 74 77 * Fixed: connection issue on new access token update … … 234 237 235 238 == Upgrade Notice == 239 = 2.1.7 = 240 small code bug fixed 241 236 242 = 2.1.6 = 237 243 connection issue solved for new token update
Note: See TracChangeset
for help on using the changeset viewer.