Changeset 1250120
- Timestamp:
- 09/21/2015 08:29:50 AM (11 years ago)
- Location:
- shopello/trunk
- Files:
-
- 5 edited
-
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/readme.txt
r1235171 r1250120 5 5 Requires at least: 4.2.0 6 6 Tested up to: 4.3 7 Stable tag: 2.7. 07 Stable tag: 2.7.1 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.7.1 = 54 * Increased max amount of listings from 15 to 50. 55 53 56 = 2.7.0 = 54 57 * Tested with Wordpress 4.3 -
shopello/trunk/shopello_api.php
r1235171 r1250120 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. 010 * Version: 2.7.1 11 11 * Author: Shopello AB 12 12 */ -
shopello/trunk/src/classes/Shopello/ListingManager.php
r1165651 r1250120 9 9 { 10 10 private $listings = array(); 11 private $maxItems = 15;11 private $maxItems = 50; 12 12 13 13 private static $instance; -
shopello/trunk/vendor/autoload.php
r1235171 r1250120 5 5 require_once __DIR__ . '/composer' . '/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 2603b3d5cba7be417564755ad2f99e2b::getLoader();7 return ComposerAutoloaderInit351b760285e5517cf275e8f968669063::getLoader(); -
shopello/trunk/vendor/composer/autoload_real.php
r1235171 r1250120 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 2603b3d5cba7be417564755ad2f99e2b5 class ComposerAutoloaderInit351b760285e5517cf275e8f968669063 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 2603b3d5cba7be417564755ad2f99e2b', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit351b760285e5517cf275e8f968669063', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 2603b3d5cba7be417564755ad2f99e2b', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit351b760285e5517cf275e8f968669063', 'loadClassLoader')); 25 25 26 26 $map = require __DIR__ . '/autoload_namespaces.php'; … … 45 45 } 46 46 47 function composerRequire 2603b3d5cba7be417564755ad2f99e2b($file)47 function composerRequire351b760285e5517cf275e8f968669063($file) 48 48 { 49 49 require $file;
Note: See TracChangeset
for help on using the changeset viewer.