Changeset 1169129
- Timestamp:
- 05/28/2015 07:11:12 AM (11 years ago)
- Location:
- shopello/trunk
- Files:
-
- 6 edited
-
readme.txt (modified) (2 diffs)
-
shopello_api.php (modified) (1 diff)
-
src/admin.php (modified) (1 diff)
-
src/dbinstall.php (modified) (2 diffs)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shopello/trunk/readme.txt
r1165706 r1169129 5 5 Requires at least: 4.2.0 6 6 Tested up to: 4.2.2 7 Stable tag: 2. 4.47 Stable tag: 2.5.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 51 51 52 52 == Changelog == 53 = 2.5.0 = 54 * Some users experienced issues regarding "json_decode", fixed the cause of the 55 issue and added migration to repair the database. 56 53 57 = 2.4.4 = 54 58 * PHP 5.3 Regression -
shopello/trunk/shopello_api.php
r1165706 r1169129 8 8 * Plugin URI: http://shopello.se/api/wordpress 9 9 * Description: This plugin was created to allow wordpress blogs and websites to in a simple manner include listings of products from Shopello.se. 10 * Version: 2. 4.410 * Version: 2.5.0 11 11 * Author: Shopello AB 12 12 */ -
shopello/trunk/src/admin.php
r1165651 r1169129 19 19 function sanitize_swp_items() 20 20 { 21 return (object) \Shopello\ListingManager::getInstance()->getAllListings();21 return json_encode((object) \Shopello\ListingManager::getInstance()->getAllListings()); 22 22 } 23 23 -
shopello/trunk/src/dbinstall.php
r1165651 r1169129 2 2 3 3 global $shopello_db_version; 4 $shopello_db_version = '3. 1';4 $shopello_db_version = '3.2'; 5 5 6 6 // On plugin activate, install database tables … … 96 96 update_option('shopello_db_version', '3.1'); 97 97 } 98 99 /** 100 * We had overlooked a piece of code and got data stored incorrectly, this 101 * migration intend to fix that. 102 */ 103 if (get_option('shopello_db_version') === '3.1') { 104 $data = get_option('shopello_list'); 105 106 if ('object' === gettype($data)) { 107 update_option('shopello_list', json_encode($data)); 108 } 109 110 update_option('shopello_db_version', '3.2'); 111 } -
shopello/trunk/vendor/autoload.php
r1165706 r1169129 5 5 require_once __DIR__ . '/composer' . '/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 891443df57c7790d99977d5422fd34e6::getLoader();7 return ComposerAutoloaderInitf03060d906c4e7b64b580d6f474da9cc::getLoader(); -
shopello/trunk/vendor/composer/autoload_real.php
r1165706 r1169129 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 891443df57c7790d99977d5422fd34e65 class ComposerAutoloaderInitf03060d906c4e7b64b580d6f474da9cc 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 891443df57c7790d99977d5422fd34e6', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInitf03060d906c4e7b64b580d6f474da9cc', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 891443df57c7790d99977d5422fd34e6', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInitf03060d906c4e7b64b580d6f474da9cc', 'loadClassLoader')); 25 25 26 26 $map = require __DIR__ . '/autoload_namespaces.php'; … … 45 45 } 46 46 47 function composerRequire 891443df57c7790d99977d5422fd34e6($file)47 function composerRequiref03060d906c4e7b64b580d6f474da9cc($file) 48 48 { 49 49 require $file;
Note: See TracChangeset
for help on using the changeset viewer.