Changeset 1263839
- Timestamp:
- 10/12/2015 07:21:57 AM (10 years ago)
- Location:
- shopello/trunk
- Files:
-
- 6 edited
-
assets/js/admin.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shopello_api.php (modified) (1 diff)
-
src/classes/Shopello/ListingManager.php (modified) (1 diff)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shopello/trunk/assets/js/admin.js
r1255619 r1263839 29 29 30 30 // Row counting and max-count of rows 31 var total_shortcodes_max = 50;31 var total_shortcodes_max = 1000; 32 32 var total_shortcodes = shortcode_table.find('tr').length; 33 33 -
shopello/trunk/readme.txt
r1255625 r1263839 5 5 Requires at least: 4.2.0 6 6 Tested up to: 4.3 7 Stable tag: 2.7. 47 Stable tag: 2.7.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 51 51 == Changelog == 52 = 2.7.5 = 53 * This is the last planned release of this plugin. 54 * Bumped the limit of max amount of listings from 50 to 1000. 55 52 56 = 2.7.4 = 53 57 * Proper reducted price fix. -
shopello/trunk/shopello_api.php
r1255625 r1263839 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.7. 410 * Version: 2.7.5 11 11 * Author: Shopello AB 12 12 */ -
shopello/trunk/src/classes/Shopello/ListingManager.php
r1250120 r1263839 9 9 { 10 10 private $listings = array(); 11 private $maxItems = 50;11 private $maxItems = 1000; 12 12 13 13 private static $instance; -
shopello/trunk/vendor/autoload.php
r1255625 r1263839 5 5 require_once __DIR__ . '/composer' . '/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 26090a170ff7d474ada180d675aa0c94::getLoader();7 return ComposerAutoloaderInit755733c9d2634fb1fc2af1c72063bdf6::getLoader(); -
shopello/trunk/vendor/composer/autoload_real.php
r1255625 r1263839 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 26090a170ff7d474ada180d675aa0c945 class ComposerAutoloaderInit755733c9d2634fb1fc2af1c72063bdf6 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 26090a170ff7d474ada180d675aa0c94', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit755733c9d2634fb1fc2af1c72063bdf6', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 26090a170ff7d474ada180d675aa0c94', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit755733c9d2634fb1fc2af1c72063bdf6', 'loadClassLoader')); 25 25 26 26 $map = require __DIR__ . '/autoload_namespaces.php'; … … 45 45 } 46 46 47 function composerRequire 26090a170ff7d474ada180d675aa0c94($file)47 function composerRequire755733c9d2634fb1fc2af1c72063bdf6($file) 48 48 { 49 49 require $file;
Note: See TracChangeset
for help on using the changeset viewer.