Plugin Directory

Changeset 2753806


Ignore:
Timestamp:
07/08/2022 03:12:11 PM (4 years ago)
Author:
ownerrez
Message:

Update to version 1.1.12 from GitHub

Location:
ownerrez
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ownerrez/tags/1.1.12/lib/autoload.php

    r2725595 r2753806  
    1010require_once __DIR__ . '/composer/autoload_real.php';
    1111
    12 return ComposerAutoloaderInit1846830f22b88e1d8161a16e718300f1::getLoader();
     12return ComposerAutoloaderInit04016d0c08ca9e397c5c9e78771463cb::getLoader();
  • ownerrez/tags/1.1.12/lib/composer/InstalledVersions.php

    r2723507 r2753806  
    2929    /**
    3030     * @var mixed[]|null
    31      * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
     31     * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
    3232     */
    3333    private static $installed;
     
    4040    /**
    4141     * @var array[]
    42      * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     42     * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    4343     */
    4444    private static $installedByVendor = array();
     
    244244    /**
    245245     * @return array
    246      * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
     246     * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
    247247     */
    248248    public static function getRootPackage()
     
    258258     * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
    259259     * @return array[]
    260      * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
     260     * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
    261261     */
    262262    public static function getRawData()
     
    281281     *
    282282     * @return array[]
    283      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     283     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    284284     */
    285285    public static function getAllRawData()
     
    304304     * @return void
    305305     *
    306      * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
     306     * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
    307307     */
    308308    public static function reload($data)
     
    314314    /**
    315315     * @return array[]
    316      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     316     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    317317     */
    318318    private static function getInstalled()
  • ownerrez/tags/1.1.12/lib/composer/autoload_real.php

    r2725595 r2753806  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit1846830f22b88e1d8161a16e718300f1
     5class ComposerAutoloaderInit04016d0c08ca9e397c5c9e78771463cb
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit1846830f22b88e1d8161a16e718300f1', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit04016d0c08ca9e397c5c9e78771463cb', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit1846830f22b88e1d8161a16e718300f1', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit04016d0c08ca9e397c5c9e78771463cb', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit1846830f22b88e1d8161a16e718300f1::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $includeFiles = \Composer\Autoload\ComposerStaticInit1846830f22b88e1d8161a16e718300f1::$files;
     36        $includeFiles = \Composer\Autoload\ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::$files;
    3737        foreach ($includeFiles as $fileIdentifier => $file) {
    38             composerRequire1846830f22b88e1d8161a16e718300f1($fileIdentifier, $file);
     38            composerRequire04016d0c08ca9e397c5c9e78771463cb($fileIdentifier, $file);
    3939        }
    4040
     
    4848 * @return void
    4949 */
    50 function composerRequire1846830f22b88e1d8161a16e718300f1($fileIdentifier, $file)
     50function composerRequire04016d0c08ca9e397c5c9e78771463cb($fileIdentifier, $file)
    5151{
    5252    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • ownerrez/tags/1.1.12/lib/composer/autoload_static.php

    r2725595 r2753806  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit1846830f22b88e1d8161a16e718300f1
     7class ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb
    88{
    99    public static $files = array (
     
    7676    {
    7777        return \Closure::bind(function () use ($loader) {
    78             $loader->prefixLengthsPsr4 = ComposerStaticInit1846830f22b88e1d8161a16e718300f1::$prefixLengthsPsr4;
    79             $loader->prefixDirsPsr4 = ComposerStaticInit1846830f22b88e1d8161a16e718300f1::$prefixDirsPsr4;
    80             $loader->classMap = ComposerStaticInit1846830f22b88e1d8161a16e718300f1::$classMap;
     78            $loader->prefixLengthsPsr4 = ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::$prefixLengthsPsr4;
     79            $loader->prefixDirsPsr4 = ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::$prefixDirsPsr4;
     80            $loader->classMap = ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::$classMap;
    8181
    8282        }, null, ClassLoader::class);
  • ownerrez/tags/1.1.12/lib/composer/installed.php

    r2723507 r2753806  
    11<?php return array(
    22    'root' => array(
     3        'name' => 'ownerrez/orez-wp',
    34        'pretty_version' => '1.0.0+no-version-set',
    45        'version' => '1.0.0.0',
     6        'reference' => NULL,
    57        'type' => 'wordpress-plugin',
    68        'install_path' => __DIR__ . '/../../../',
    79        'aliases' => array(),
    8         'reference' => NULL,
    9         'name' => 'ownerrez/orez-wp',
    1010        'dev' => true,
    1111    ),
     
    1414            'pretty_version' => '7.2.0',
    1515            'version' => '7.2.0.0',
     16            'reference' => '0aa74dfb41ae110835923ef10a9d803a22d50e79',
    1617            'type' => 'library',
    1718            'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
    1819            'aliases' => array(),
    19             'reference' => '0aa74dfb41ae110835923ef10a9d803a22d50e79',
    2020            'dev_requirement' => false,
    2121        ),
     
    2323            'pretty_version' => '1.4.0',
    2424            'version' => '1.4.0.0',
     25            'reference' => '60d379c243457e073cff02bc323a2a86cb355631',
    2526            'type' => 'library',
    2627            'install_path' => __DIR__ . '/../guzzlehttp/promises',
    2728            'aliases' => array(),
    28             'reference' => '60d379c243457e073cff02bc323a2a86cb355631',
    2929            'dev_requirement' => false,
    3030        ),
     
    3232            'pretty_version' => '1.7.0',
    3333            'version' => '1.7.0.0',
     34            'reference' => '53330f47520498c0ae1f61f7e2c90f55690c06a3',
    3435            'type' => 'library',
    3536            'install_path' => __DIR__ . '/../guzzlehttp/psr7',
    3637            'aliases' => array(),
    37             'reference' => '53330f47520498c0ae1f61f7e2c90f55690c06a3',
    3838            'dev_requirement' => false,
    3939        ),
     
    4141            'pretty_version' => '1.0.5',
    4242            'version' => '1.0.5.0',
     43            'reference' => '7b103b412eb359848cbde50bfc3c8b18a898b461',
    4344            'type' => 'library',
    4445            'install_path' => __DIR__ . '/../ownerrez/orez-api',
    4546            'aliases' => array(),
    46             'reference' => '7b103b412eb359848cbde50bfc3c8b18a898b461',
    4747            'dev_requirement' => false,
    4848        ),
     
    5050            'pretty_version' => '1.0.0+no-version-set',
    5151            'version' => '1.0.0.0',
     52            'reference' => NULL,
    5253            'type' => 'wordpress-plugin',
    5354            'install_path' => __DIR__ . '/../../../',
    5455            'aliases' => array(),
    55             'reference' => NULL,
    5656            'dev_requirement' => false,
    5757        ),
     
    5959            'pretty_version' => '1.0.1',
    6060            'version' => '1.0.1.0',
     61            'reference' => '2dfb5f6c5eff0e91e20e913f8c5452ed95b86621',
    6162            'type' => 'library',
    6263            'install_path' => __DIR__ . '/../psr/http-client',
    6364            'aliases' => array(),
    64             'reference' => '2dfb5f6c5eff0e91e20e913f8c5452ed95b86621',
    6565            'dev_requirement' => false,
    6666        ),
     
    7474            'pretty_version' => '1.0.1',
    7575            'version' => '1.0.1.0',
     76            'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
    7677            'type' => 'library',
    7778            'install_path' => __DIR__ . '/../psr/http-message',
    7879            'aliases' => array(),
    79             'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
    8080            'dev_requirement' => false,
    8181        ),
     
    8989            'pretty_version' => '3.0.3',
    9090            'version' => '3.0.3.0',
     91            'reference' => '120b605dfeb996808c31b6477290a714d356e822',
    9192            'type' => 'library',
    9293            'install_path' => __DIR__ . '/../ralouphie/getallheaders',
    9394            'aliases' => array(),
    94             'reference' => '120b605dfeb996808c31b6477290a714d356e822',
    9595            'dev_requirement' => false,
    9696        ),
  • ownerrez/tags/1.1.12/ownerrez.php

    r2725595 r2753806  
    1717 * Plugin URI:        https://www.ownerreservations.com/support/wordpress
    1818 * Description:       The official WordPress plugin for the OwnerRez API.
    19  * Version:           1.1.10
     19 * Version:           1.1.12
    2020 * Author:            OwnerRez, Inc.
    2121 * Author URI:        https://www.ownerreservations.com/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define('OWNERREZ_VERSION', '1.1.11');
     38define('OWNERREZ_VERSION', '1.1.12');
    3939
    4040/**
  • ownerrez/tags/1.1.12/public/class-ownerrez-shortcodes.php

    r2723507 r2753806  
    340340        foreach ($images as &$image) {
    341341            $caption = "";
    342             if (property_exists($image, "caption"))
    343                 $caption = $image->caption;
     342            if (property_exists($image, "caption") && !is_null($image->caption))
     343                $caption = htmlentities2($image->caption);
    344344
    345345            $srcUrl = $image->originalUrl;
  • ownerrez/tags/1.1.12/readme.txt

    r2725595 r2753806  
    44Requires at least: 5.4
    55Tested up to: 5.9.3
    6 Stable tag: 1.1.10
     6Stable tag: 1.1.12
    77License: MIT
    88License URI: https://github.com/ownerrez/orez-wp/blob/master/LICENSE
     
    3333
    3434== Changelog ==
     35= 1.1.12 =
     36- Html encode image captions on carousel render.
     37
    3538= 1.1.11 =
    3639- Further improvements to photo carousel.
  • ownerrez/trunk/lib/autoload.php

    r2725595 r2753806  
    1010require_once __DIR__ . '/composer/autoload_real.php';
    1111
    12 return ComposerAutoloaderInit1846830f22b88e1d8161a16e718300f1::getLoader();
     12return ComposerAutoloaderInit04016d0c08ca9e397c5c9e78771463cb::getLoader();
  • ownerrez/trunk/lib/composer/InstalledVersions.php

    r2723507 r2753806  
    2929    /**
    3030     * @var mixed[]|null
    31      * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
     31     * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
    3232     */
    3333    private static $installed;
     
    4040    /**
    4141     * @var array[]
    42      * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     42     * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    4343     */
    4444    private static $installedByVendor = array();
     
    244244    /**
    245245     * @return array
    246      * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
     246     * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
    247247     */
    248248    public static function getRootPackage()
     
    258258     * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
    259259     * @return array[]
    260      * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
     260     * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
    261261     */
    262262    public static function getRawData()
     
    281281     *
    282282     * @return array[]
    283      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     283     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    284284     */
    285285    public static function getAllRawData()
     
    304304     * @return void
    305305     *
    306      * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
     306     * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
    307307     */
    308308    public static function reload($data)
     
    314314    /**
    315315     * @return array[]
    316      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     316     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
    317317     */
    318318    private static function getInstalled()
  • ownerrez/trunk/lib/composer/autoload_real.php

    r2725595 r2753806  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit1846830f22b88e1d8161a16e718300f1
     5class ComposerAutoloaderInit04016d0c08ca9e397c5c9e78771463cb
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit1846830f22b88e1d8161a16e718300f1', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit04016d0c08ca9e397c5c9e78771463cb', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit1846830f22b88e1d8161a16e718300f1', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit04016d0c08ca9e397c5c9e78771463cb', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit1846830f22b88e1d8161a16e718300f1::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $includeFiles = \Composer\Autoload\ComposerStaticInit1846830f22b88e1d8161a16e718300f1::$files;
     36        $includeFiles = \Composer\Autoload\ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::$files;
    3737        foreach ($includeFiles as $fileIdentifier => $file) {
    38             composerRequire1846830f22b88e1d8161a16e718300f1($fileIdentifier, $file);
     38            composerRequire04016d0c08ca9e397c5c9e78771463cb($fileIdentifier, $file);
    3939        }
    4040
     
    4848 * @return void
    4949 */
    50 function composerRequire1846830f22b88e1d8161a16e718300f1($fileIdentifier, $file)
     50function composerRequire04016d0c08ca9e397c5c9e78771463cb($fileIdentifier, $file)
    5151{
    5252    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • ownerrez/trunk/lib/composer/autoload_static.php

    r2725595 r2753806  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit1846830f22b88e1d8161a16e718300f1
     7class ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb
    88{
    99    public static $files = array (
     
    7676    {
    7777        return \Closure::bind(function () use ($loader) {
    78             $loader->prefixLengthsPsr4 = ComposerStaticInit1846830f22b88e1d8161a16e718300f1::$prefixLengthsPsr4;
    79             $loader->prefixDirsPsr4 = ComposerStaticInit1846830f22b88e1d8161a16e718300f1::$prefixDirsPsr4;
    80             $loader->classMap = ComposerStaticInit1846830f22b88e1d8161a16e718300f1::$classMap;
     78            $loader->prefixLengthsPsr4 = ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::$prefixLengthsPsr4;
     79            $loader->prefixDirsPsr4 = ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::$prefixDirsPsr4;
     80            $loader->classMap = ComposerStaticInit04016d0c08ca9e397c5c9e78771463cb::$classMap;
    8181
    8282        }, null, ClassLoader::class);
  • ownerrez/trunk/lib/composer/installed.php

    r2723507 r2753806  
    11<?php return array(
    22    'root' => array(
     3        'name' => 'ownerrez/orez-wp',
    34        'pretty_version' => '1.0.0+no-version-set',
    45        'version' => '1.0.0.0',
     6        'reference' => NULL,
    57        'type' => 'wordpress-plugin',
    68        'install_path' => __DIR__ . '/../../../',
    79        'aliases' => array(),
    8         'reference' => NULL,
    9         'name' => 'ownerrez/orez-wp',
    1010        'dev' => true,
    1111    ),
     
    1414            'pretty_version' => '7.2.0',
    1515            'version' => '7.2.0.0',
     16            'reference' => '0aa74dfb41ae110835923ef10a9d803a22d50e79',
    1617            'type' => 'library',
    1718            'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
    1819            'aliases' => array(),
    19             'reference' => '0aa74dfb41ae110835923ef10a9d803a22d50e79',
    2020            'dev_requirement' => false,
    2121        ),
     
    2323            'pretty_version' => '1.4.0',
    2424            'version' => '1.4.0.0',
     25            'reference' => '60d379c243457e073cff02bc323a2a86cb355631',
    2526            'type' => 'library',
    2627            'install_path' => __DIR__ . '/../guzzlehttp/promises',
    2728            'aliases' => array(),
    28             'reference' => '60d379c243457e073cff02bc323a2a86cb355631',
    2929            'dev_requirement' => false,
    3030        ),
     
    3232            'pretty_version' => '1.7.0',
    3333            'version' => '1.7.0.0',
     34            'reference' => '53330f47520498c0ae1f61f7e2c90f55690c06a3',
    3435            'type' => 'library',
    3536            'install_path' => __DIR__ . '/../guzzlehttp/psr7',
    3637            'aliases' => array(),
    37             'reference' => '53330f47520498c0ae1f61f7e2c90f55690c06a3',
    3838            'dev_requirement' => false,
    3939        ),
     
    4141            'pretty_version' => '1.0.5',
    4242            'version' => '1.0.5.0',
     43            'reference' => '7b103b412eb359848cbde50bfc3c8b18a898b461',
    4344            'type' => 'library',
    4445            'install_path' => __DIR__ . '/../ownerrez/orez-api',
    4546            'aliases' => array(),
    46             'reference' => '7b103b412eb359848cbde50bfc3c8b18a898b461',
    4747            'dev_requirement' => false,
    4848        ),
     
    5050            'pretty_version' => '1.0.0+no-version-set',
    5151            'version' => '1.0.0.0',
     52            'reference' => NULL,
    5253            'type' => 'wordpress-plugin',
    5354            'install_path' => __DIR__ . '/../../../',
    5455            'aliases' => array(),
    55             'reference' => NULL,
    5656            'dev_requirement' => false,
    5757        ),
     
    5959            'pretty_version' => '1.0.1',
    6060            'version' => '1.0.1.0',
     61            'reference' => '2dfb5f6c5eff0e91e20e913f8c5452ed95b86621',
    6162            'type' => 'library',
    6263            'install_path' => __DIR__ . '/../psr/http-client',
    6364            'aliases' => array(),
    64             'reference' => '2dfb5f6c5eff0e91e20e913f8c5452ed95b86621',
    6565            'dev_requirement' => false,
    6666        ),
     
    7474            'pretty_version' => '1.0.1',
    7575            'version' => '1.0.1.0',
     76            'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
    7677            'type' => 'library',
    7778            'install_path' => __DIR__ . '/../psr/http-message',
    7879            'aliases' => array(),
    79             'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
    8080            'dev_requirement' => false,
    8181        ),
     
    8989            'pretty_version' => '3.0.3',
    9090            'version' => '3.0.3.0',
     91            'reference' => '120b605dfeb996808c31b6477290a714d356e822',
    9192            'type' => 'library',
    9293            'install_path' => __DIR__ . '/../ralouphie/getallheaders',
    9394            'aliases' => array(),
    94             'reference' => '120b605dfeb996808c31b6477290a714d356e822',
    9595            'dev_requirement' => false,
    9696        ),
  • ownerrez/trunk/ownerrez.php

    r2725595 r2753806  
    1717 * Plugin URI:        https://www.ownerreservations.com/support/wordpress
    1818 * Description:       The official WordPress plugin for the OwnerRez API.
    19  * Version:           1.1.10
     19 * Version:           1.1.12
    2020 * Author:            OwnerRez, Inc.
    2121 * Author URI:        https://www.ownerreservations.com/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define('OWNERREZ_VERSION', '1.1.11');
     38define('OWNERREZ_VERSION', '1.1.12');
    3939
    4040/**
  • ownerrez/trunk/public/class-ownerrez-shortcodes.php

    r2723507 r2753806  
    340340        foreach ($images as &$image) {
    341341            $caption = "";
    342             if (property_exists($image, "caption"))
    343                 $caption = $image->caption;
     342            if (property_exists($image, "caption") && !is_null($image->caption))
     343                $caption = htmlentities2($image->caption);
    344344
    345345            $srcUrl = $image->originalUrl;
  • ownerrez/trunk/readme.txt

    r2725595 r2753806  
    44Requires at least: 5.4
    55Tested up to: 5.9.3
    6 Stable tag: 1.1.10
     6Stable tag: 1.1.12
    77License: MIT
    88License URI: https://github.com/ownerrez/orez-wp/blob/master/LICENSE
     
    3333
    3434== Changelog ==
     35= 1.1.12 =
     36- Html encode image captions on carousel render.
     37
    3538= 1.1.11 =
    3639- Further improvements to photo carousel.
Note: See TracChangeset for help on using the changeset viewer.