Changeset 1171701
- Timestamp:
- 06/01/2015 09:41:52 AM (11 years ago)
- Location:
- shopello/trunk
- Files:
-
- 6 edited
-
readme.txt (modified) (2 diffs)
-
shopello_api.php (modified) (1 diff)
-
src/dbinstall.php (modified) (2 diffs)
-
src/templates/admin/product-lists.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
r1169171 r1171701 5 5 Requires at least: 4.2.0 6 6 Tested up to: 4.2.2 7 Stable tag: 2.5. 17 Stable tag: 2.5.2 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.2 = 54 * Fixed regression in the Listing Management. 55 * Repaired a small case of database corruption. 56 53 57 = 2.5.1 = 54 58 * Fixed regression in the "Test API" button in settings. -
shopello/trunk/shopello_api.php
r1169171 r1171701 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.5. 110 * Version: 2.5.2 11 11 * Author: Shopello AB 12 12 */ -
shopello/trunk/src/dbinstall.php
r1169129 r1171701 2 2 3 3 global $shopello_db_version; 4 $shopello_db_version = '3. 2';4 $shopello_db_version = '3.3'; 5 5 6 6 // On plugin activate, install database tables … … 110 110 update_option('shopello_db_version', '3.2'); 111 111 } 112 113 /** 114 * Migration to add ID's to the listing objects 115 */ 116 if (get_option('shopello_db_version') === '3.2') { 117 $items = json_decode(get_option('shopello_list')); 118 119 foreach ($items as $id => $item) { 120 $items->$id->id = $id; 121 } 122 123 update_option('shopello_list', json_encode($items)); 124 update_option('shopello_db_version', '3.3'); 125 } -
shopello/trunk/src/templates/admin/product-lists.php
r1163278 r1171701 42 42 <?php 43 43 // Get stashed shortcodes 44 foreach ($items as $i tem) :44 foreach ($items as $id => $item) : 45 45 ?> 46 46 <tr> … … 48 48 <td width="40%"><span class="swp_item_desc"><?php echo $item->get_description(DESC_DELIMITER);?></span></td> 49 49 <td width="10%"> 50 <input type="hidden" name="swp_item_id" class="swp_item_id" value="<?php echo $i tem->get_id();?>"/>50 <input type="hidden" name="swp_item_id" class="swp_item_id" value="<?php echo $id ?>"/> 51 51 <input type="button" class="button remove" value="Ta bort" /> 52 52 </td> -
shopello/trunk/vendor/autoload.php
r1169171 r1171701 5 5 require_once __DIR__ . '/composer' . '/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 78e8447a098349254557e0687920b509::getLoader();7 return ComposerAutoloaderInit60e3c1b9fcf8df2db4630c3c0df8792f::getLoader(); -
shopello/trunk/vendor/composer/autoload_real.php
r1169171 r1171701 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 78e8447a098349254557e0687920b5095 class ComposerAutoloaderInit60e3c1b9fcf8df2db4630c3c0df8792f 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 78e8447a098349254557e0687920b509', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit60e3c1b9fcf8df2db4630c3c0df8792f', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 78e8447a098349254557e0687920b509', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit60e3c1b9fcf8df2db4630c3c0df8792f', 'loadClassLoader')); 25 25 26 26 $map = require __DIR__ . '/autoload_namespaces.php'; … … 45 45 } 46 46 47 function composerRequire 78e8447a098349254557e0687920b509($file)47 function composerRequire60e3c1b9fcf8df2db4630c3c0df8792f($file) 48 48 { 49 49 require $file;
Note: See TracChangeset
for help on using the changeset viewer.