Plugin Directory

Changeset 1163305


Ignore:
Timestamp:
05/19/2015 11:55:34 AM (11 years ago)
Author:
Shopello
Message:

New release 2.4.1

Location:
shopello/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • shopello/trunk/readme.txt

    r1163278 r1163305  
    55Requires at least: 4.2.0
    66Tested up to: 4.2.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5151
    5252== Changelog ==
     53= 2.4.1 =
     54* Resolved issue with the pagination if a custom pagesize is chosen.
     55
    5356= 2.4.0 =
    5457* This update shouldn't affect any features, it's a big refactor of how we store
  • shopello/trunk/shopello_api.php

    r1163278 r1163305  
    88 * Plugin URI: http://shopello.se/api/wordpress
    99 * 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.0
     10 * Version: 2.4.1
    1111 * Author: Shopello AB
    1212 */
  • shopello/trunk/src/classes/SWP/Pager.php

    r1137226 r1163305  
    6363
    6464        // swp_page did not exist, add it
    65         if (strpos($uri, 'swp_page') === false) {
     65        if (strpos($uri, 'swp_page=') === false) {
    6666            $join = (bool) parse_url($uri, PHP_URL_QUERY) ? '&' : '?';
    6767
  • shopello/trunk/vendor/autoload.php

    r1163278 r1163305  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInitd5524bbd5881e1e24851d2a29836b742::getLoader();
     7return ComposerAutoloaderInit2a4b68394e7131ef06c231f87de8d257::getLoader();
  • shopello/trunk/vendor/composer/autoload_real.php

    r1163278 r1163305  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitd5524bbd5881e1e24851d2a29836b742
     5class ComposerAutoloaderInit2a4b68394e7131ef06c231f87de8d257
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInitd5524bbd5881e1e24851d2a29836b742', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit2a4b68394e7131ef06c231f87de8d257', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInitd5524bbd5881e1e24851d2a29836b742', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit2a4b68394e7131ef06c231f87de8d257', 'loadClassLoader'));
    2525
    2626        $map = require __DIR__ . '/autoload_namespaces.php';
     
    4545}
    4646
    47 function composerRequired5524bbd5881e1e24851d2a29836b742($file)
     47function composerRequire2a4b68394e7131ef06c231f87de8d257($file)
    4848{
    4949    require $file;
Note: See TracChangeset for help on using the changeset viewer.