Plugin Directory

Changeset 3003964


Ignore:
Timestamp:
11/30/2023 10:09:42 PM (2 years ago)
Author:
chrisakelley
Message:

Tagged v3.53 as unstable release

Location:
nextgen-gallery
Files:
1638 added
13 edited

Legend:

Unmodified
Added
Removed
  • nextgen-gallery/trunk/changelog.txt

    r3003892 r3003964  
    11NextGEN Gallery
    22by Imagely
     3
     4= V3.53  - 11.30.2023 =
     5* Fixed:   A potential conflict with NextGEN Pro Lightbox.
    36
    47= V3.52  - 11.30.2023 =
     
    1114= V3.50  - 11.29.2023 =
    1215* IMPORTANT: Support for PHP 5.6 and lower has been discontinued. If you are running PHP 5.6 or lower, you MUST upgrade PHP before installing NextGen 3.5.0. Failure to do that will disable NextGen core functionality.
    13 * Updated: Major refactor of the plugin to support future improvements! Note: This release Requires at least PHP 7.0. 
     16* Updated: Major refactor of the plugin to support future improvements! Note: This release Requires at least PHP 7.0.
    1417* Fixed:   We closed some issues affecting Lightroom users
    1518
     
    144147* Fixed:   PHP foreach warning (1173)
    145148
    146 = V3.9.1 - 03.29.2021 = 
     149= V3.9.1 - 03.29.2021 =
    147150* Fixed:   C_Dynamic_Stylesheet_Controller error
    148151* Fixed:   Galleries not displaying
     
    13371340
    13381341= V1.9.13 - 06.11.2013 =
    1339 * NEW:     Slideshows are now centered to their content area     
     1342* NEW:     Slideshows are now centered to their content area
    13401343* Secured: Ensure that only logged in users can upload images via plugin
    13411344* Fixed:   Import date is preserved are no longer Jan 1 1970
  • nextgen-gallery/trunk/composer.lock

    r3003333 r3003964  
    907907    "platform": [],
    908908    "platform-dev": [],
    909     "plugin-api-version": "2.3.0"
     909    "plugin-api-version": "2.6.0"
    910910}
  • nextgen-gallery/trunk/nggallery.php

    r3003892 r3003964  
    33 * Plugin Name: NextGEN Gallery
    44 * Description: The most popular gallery plugin for WordPress and one of the most popular plugins of all time with over 30 million downloads.
    5  * Version: 3.52
     5 * Version: 3.53
    66 * Author: Imagely
    77 * Plugin URI: https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/
     
    267267        class_alias( '\Imagely\NGG\DisplayTypes\Taxonomy', 'C_Taxonomy_Controller' );
    268268        class_alias( '\Imagely\NGG\Display\I18N', 'M_I18N' );
     269        class_alias( '\Imagely\NGG\Display\LightboxManager', 'C_Lightbox_Library_Manager' );
    269270        class_alias( '\Imagely\NGG\Display\Shortcodes', 'C_NextGen_Shortcode_Manager' );
    270271        class_alias( '\Imagely\NGG\DisplayedGallery\Renderer', 'C_Displayed_Gallery_Renderer' );
     
    920921        define( 'NGG_MODULE_DIR', implode( DIRECTORY_SEPARATOR, [ rtrim( NGG_PRODUCT_DIR, '/\\' ), 'photocrati_nextgen', 'modules' ] ) );
    921922        define( 'NGG_PLUGIN_STARTED_AT', microtime() );
    922         define( 'NGG_PLUGIN_VERSION', '3.52' );
     923        define( 'NGG_PLUGIN_VERSION', '3.53' );
    923924
    924925        define( 'NGG_SCRIPT_VERSION', defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? (string) mt_rand( 0, mt_getrandmax() ) : NGG_PLUGIN_VERSION );
  • nextgen-gallery/trunk/readme.txt

    r3003892 r3003964  
    33Tags: wordpress gallery plugin, gallery, nextgen, nextgen gallery, photo gallery, image gallery, photography, slideshow, images, photo, photo album, watermark
    44Requires at least: 5.5.4
    5 Stable tag: 3.52
     5Stable tag: 3.53
    66Tested up to: 6.4.1
    77License: GPLv3
     
    115115= Are the photo galleries flash based? =
    116116
    117 Nope, we use no flash elements. 
     117Nope, we use no flash elements.
    118118
    119119
     
    155155= Can I customize the lightbox? =
    156156
    157 Yes, the lightbox can be configured with multiple options directly from the Dashboard, and there are multiple CSS styles which can be applied and modified as well. If you want even more options, consider upgrading to NextGEN Pro and useing the NextGEN Pro lightbox. 
     157Yes, the lightbox can be configured with multiple options directly from the Dashboard, and there are multiple CSS styles which can be applied and modified as well. If you want even more options, consider upgrading to NextGEN Pro and useing the NextGEN Pro lightbox.
    158158
    159159
     
    179179
    180180== Changelog ==
     181
     182= V3.53  - 11.30.2023 =
     183* Fixed:   A potential conflict with NextGEN Pro Lightbox.
    181184
    182185= V3.52  - 11.30.2023 =
     
    189192= V3.50  - 11.29.2023 =
    190193* IMPORTANT: Support for PHP 5.6 and lower has been discontinued. If you are running PHP 5.6 or lower, you MUST upgrade PHP before installing NextGen 3.5.0. Failure to do that will disable NextGen core functionality.
    191 * Updated: Major refactor of the plugin to support future improvements! Note: This release Requires at least PHP 7.0. 
     194* Updated: Major refactor of the plugin to support future improvements! Note: This release Requires at least PHP 7.0.
    192195* Fixed:   We closed some issues affecting Lightroom users
    193196
     
    322325* Fixed:   PHP foreach warning (1173)
    323326
    324 = V3.9.1 - 03.29.2021 = 
     327= V3.9.1 - 03.29.2021 =
    325328* Fixed:   C_Dynamic_Stylesheet_Controller error
    326329* Fixed:   Galleries not displaying
     
    15181521
    15191522= V1.9.13 - 06.11.2013 =
    1520 * NEW:     Slideshow galleries are now centered to their content area     
     1523* NEW:     Slideshow galleries are now centered to their content area
    15211524* Secured: Ensure that only logged in users can upload images via plugin
    15221525* Fixed:   Import date is preserved are no longer Jan 1 1970
  • nextgen-gallery/trunk/src/Display/LightboxManager.php

    r3003333 r3003964  
    141141     * @return void
    142142     */
    143     public function register( $name, Lightbox $lightbox ) {
     143    public function register( $name, $lightbox ) {
    144144        $lightbox->name            = $name;
    145145        $this->lightboxes[ $name ] = $lightbox;
  • nextgen-gallery/trunk/src/DisplayType/Controller.php

    r3003892 r3003964  
    185185        $lightbox = LightboxManager::get_instance()->get_selected();
    186186
    187         if ( $lightbox->is_supported( $displayed_gallery ) ) {
     187        if ( 'arifancybox' === $lightbox->name ) {
     188            return apply_filters( 'ngg_effect_code', $lightbox->code, $displayed_gallery );
     189        }
     190
     191        if ( $lightbox->is_supported( $displayed_gallery )  ) {
    188192            $retval = $lightbox->code;
    189193            $retval = str_replace( '%GALLERY_ID%', $displayed_gallery->id(), $retval );
     
    740744        return [];
    741745    }
     746
    742747}
  • nextgen-gallery/trunk/src/Functions/deprecated.php

    r3003892 r3003964  
    11<?php
     2
    23
    34/**
     
    121122    return apply_filters( 'ngg_show_album_content', $retval, $albumID );
    122123}
    123 
    124 /**
    125  * This class is used by ARI Fancy Lightbox. For compatibility this class exists to accept the stdClass presented
    126  * by ARI Fancy Lightbox and cast it to a NGG Lightbox data type before registration.
    127  *
    128  * @depecated
    129  */
    130 class C_Lightbox_Library_Manager {
    131     public static $instance = NULL;
    132 
    133     public static function get_instance() {
    134         if ( ! isset( self::$instance ) ) {
    135             self::$instance = new C_Lightbox_Library_Manager();
    136         }
    137 
    138         return self::$instance;
    139     }
    140 
    141     public function __call( $method, $args ) {
    142         $manager = \Imagely\NGG\Display\LightboxManager::get_instance();
    143         $manager->$method( $args );
    144     }
    145 
    146     public function register( string $name, stdClass $lightbox ) {
    147         $manager = \Imagely\NGG\Display\LightboxManager::get_instance();
    148 
    149         // Clone a new Lightbox class using the attributes in a regular stdClass.
    150         $new_lightbox = new \Imagely\NGG\DataTypes\Lightbox( $name );
    151         foreach ( get_object_vars( $lightbox ) as $key => $value ) {
    152             $new_lightbox->$key = $value;
    153         }
    154 
    155         $manager->register( $name, $new_lightbox );
    156     }
    157 }
  • nextgen-gallery/trunk/vendor/autoload.php

    r3003892 r3003964  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit865a398218c279eb1f33c4f1d4258211::getLoader();
     25return ComposerAutoloaderInit947270fe14b33b958df8910a24cbf812::getLoader();
  • nextgen-gallery/trunk/vendor/composer/ClassLoader.php

    r2859811 r3003964  
    4343class ClassLoader
    4444{
    45     /** @var ?string */
     45    /** @var \Closure(string):void */
     46    private static $includeFile;
     47
     48    /** @var string|null */
    4649    private $vendorDir;
    4750
    4851    // PSR-4
    4952    /**
    50      * @var array[]
    51      * @psalm-var array<string, array<string, int>>
     53     * @var array<string, array<string, int>>
    5254     */
    5355    private $prefixLengthsPsr4 = array();
    5456    /**
    55      * @var array[]
    56      * @psalm-var array<string, array<int, string>>
     57     * @var array<string, list<string>>
    5758     */
    5859    private $prefixDirsPsr4 = array();
    5960    /**
    60      * @var array[]
    61      * @psalm-var array<string, string>
     61     * @var list<string>
    6262     */
    6363    private $fallbackDirsPsr4 = array();
     
    6565    // PSR-0
    6666    /**
    67      * @var array[]
    68      * @psalm-var array<string, array<string, string[]>>
     67     * List of PSR-0 prefixes
     68     *
     69     * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
     70     *
     71     * @var array<string, array<string, list<string>>>
    6972     */
    7073    private $prefixesPsr0 = array();
    7174    /**
    72      * @var array[]
    73      * @psalm-var array<string, string>
     75     * @var list<string>
    7476     */
    7577    private $fallbackDirsPsr0 = array();
     
    7981
    8082    /**
    81      * @var string[]
    82      * @psalm-var array<string, string>
     83     * @var array<string, string>
    8384     */
    8485    private $classMap = array();
     
    8889
    8990    /**
    90      * @var bool[]
    91      * @psalm-var array<string, bool>
     91     * @var array<string, bool>
    9292     */
    9393    private $missingClasses = array();
    9494
    95     /** @var ?string */
     95    /** @var string|null */
    9696    private $apcuPrefix;
    9797
    9898    /**
    99      * @var self[]
     99     * @var array<string, self>
    100100     */
    101101    private static $registeredLoaders = array();
    102102
    103103    /**
    104      * @param ?string $vendorDir
     104     * @param string|null $vendorDir
    105105     */
    106106    public function __construct($vendorDir = null)
    107107    {
    108108        $this->vendorDir = $vendorDir;
    109     }
    110 
    111     /**
    112      * @return string[]
     109        self::initializeIncludeClosure();
     110    }
     111
     112    /**
     113     * @return array<string, list<string>>
    113114     */
    114115    public function getPrefixes()
     
    122123
    123124    /**
    124      * @return array[]
    125      * @psalm-return array<string, array<int, string>>
     125     * @return array<string, list<string>>
    126126     */
    127127    public function getPrefixesPsr4()
     
    131131
    132132    /**
    133      * @return array[]
    134      * @psalm-return array<string, string>
     133     * @return list<string>
    135134     */
    136135    public function getFallbackDirs()
     
    140139
    141140    /**
    142      * @return array[]
    143      * @psalm-return array<string, string>
     141     * @return list<string>
    144142     */
    145143    public function getFallbackDirsPsr4()
     
    149147
    150148    /**
    151      * @return string[] Array of classname => path
    152      * @psalm-return array<string, string>
     149     * @return array<string, string> Array of classname => path
    153150     */
    154151    public function getClassMap()
     
    158155
    159156    /**
    160      * @param string[] $classMap Class to filename map
    161      * @psalm-param array<string, string> $classMap
     157     * @param array<string, string> $classMap Class to filename map
    162158     *
    163159     * @return void
     
    176172     * appending or prepending to the ones previously set for this prefix.
    177173     *
    178      * @param string          $prefix  The prefix
    179      * @param string[]|string $paths   The PSR-0 root directories
    180      * @param bool            $prepend Whether to prepend the directories
     174     * @param string              $prefix  The prefix
     175     * @param list<string>|string $paths   The PSR-0 root directories
     176     * @param bool                $prepend Whether to prepend the directories
    181177     *
    182178     * @return void
     
    184180    public function add($prefix, $paths, $prepend = false)
    185181    {
     182        $paths = (array) $paths;
    186183        if (!$prefix) {
    187184            if ($prepend) {
    188185                $this->fallbackDirsPsr0 = array_merge(
    189                     (array) $paths,
     186                    $paths,
    190187                    $this->fallbackDirsPsr0
    191188                );
     
    193190                $this->fallbackDirsPsr0 = array_merge(
    194191                    $this->fallbackDirsPsr0,
    195                     (array) $paths
     192                    $paths
    196193                );
    197194            }
     
    202199        $first = $prefix[0];
    203200        if (!isset($this->prefixesPsr0[$first][$prefix])) {
    204             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
     201            $this->prefixesPsr0[$first][$prefix] = $paths;
    205202
    206203            return;
     
    208205        if ($prepend) {
    209206            $this->prefixesPsr0[$first][$prefix] = array_merge(
    210                 (array) $paths,
     207                $paths,
    211208                $this->prefixesPsr0[$first][$prefix]
    212209            );
     
    214211            $this->prefixesPsr0[$first][$prefix] = array_merge(
    215212                $this->prefixesPsr0[$first][$prefix],
    216                 (array) $paths
     213                $paths
    217214            );
    218215        }
     
    223220     * appending or prepending to the ones previously set for this namespace.
    224221     *
    225      * @param string          $prefix  The prefix/namespace, with trailing '\\'
    226      * @param string[]|string $paths   The PSR-4 base directories
    227      * @param bool            $prepend Whether to prepend the directories
     222     * @param string              $prefix  The prefix/namespace, with trailing '\\'
     223     * @param list<string>|string $paths   The PSR-4 base directories
     224     * @param bool                $prepend Whether to prepend the directories
    228225     *
    229226     * @throws \InvalidArgumentException
     
    233230    public function addPsr4($prefix, $paths, $prepend = false)
    234231    {
     232        $paths = (array) $paths;
    235233        if (!$prefix) {
    236234            // Register directories for the root namespace.
    237235            if ($prepend) {
    238236                $this->fallbackDirsPsr4 = array_merge(
    239                     (array) $paths,
     237                    $paths,
    240238                    $this->fallbackDirsPsr4
    241239                );
     
    243241                $this->fallbackDirsPsr4 = array_merge(
    244242                    $this->fallbackDirsPsr4,
    245                     (array) $paths
     243                    $paths
    246244                );
    247245            }
     
    253251            }
    254252            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
    255             $this->prefixDirsPsr4[$prefix] = (array) $paths;
     253            $this->prefixDirsPsr4[$prefix] = $paths;
    256254        } elseif ($prepend) {
    257255            // Prepend directories for an already registered namespace.
    258256            $this->prefixDirsPsr4[$prefix] = array_merge(
    259                 (array) $paths,
     257                $paths,
    260258                $this->prefixDirsPsr4[$prefix]
    261259            );
     
    264262            $this->prefixDirsPsr4[$prefix] = array_merge(
    265263                $this->prefixDirsPsr4[$prefix],
    266                 (array) $paths
     264                $paths
    267265            );
    268266        }
     
    273271     * replacing any others previously set for this prefix.
    274272     *
    275      * @param string          $prefix The prefix
    276      * @param string[]|string $paths  The PSR-0 base directories
     273     * @param string              $prefix The prefix
     274     * @param list<string>|string $paths  The PSR-0 base directories
    277275     *
    278276     * @return void
     
    291289     * replacing any others previously set for this namespace.
    292290     *
    293      * @param string          $prefix The prefix/namespace, with trailing '\\'
    294      * @param string[]|string $paths  The PSR-4 base directories
     291     * @param string              $prefix The prefix/namespace, with trailing '\\'
     292     * @param list<string>|string $paths  The PSR-4 base directories
    295293     *
    296294     * @throws \InvalidArgumentException
     
    426424    {
    427425        if ($file = $this->findFile($class)) {
    428             includeFile($file);
     426            $includeFile = self::$includeFile;
     427            $includeFile($file);
    429428
    430429            return true;
     
    477476
    478477    /**
    479      * Returns the currently registered loaders indexed by their corresponding vendor directories.
    480      *
    481      * @return self[]
     478     * Returns the currently registered loaders keyed by their corresponding vendor directories.
     479     *
     480     * @return array<string, self>
    482481     */
    483482    public static function getRegisteredLoaders()
     
    556555        return false;
    557556    }
     557
     558    /**
     559     * @return void
     560     */
     561    private static function initializeIncludeClosure()
     562    {
     563        if (self::$includeFile !== null) {
     564            return;
     565        }
     566
     567        /**
     568         * Scope isolated include.
     569         *
     570         * Prevents access to $this/self from included files.
     571         *
     572         * @param  string $file
     573         * @return void
     574         */
     575        self::$includeFile = \Closure::bind(static function($file) {
     576            include $file;
     577        }, null, null);
     578    }
    558579}
    559 
    560 /**
    561  * Scope isolated include.
    562  *
    563  * Prevents access to $this/self from included files.
    564  *
    565  * @param  string $file
    566  * @return void
    567  * @private
    568  */
    569 function includeFile($file)
    570 {
    571     include $file;
    572 }
  • nextgen-gallery/trunk/vendor/composer/InstalledVersions.php

    r2759439 r3003964  
    9999        foreach (self::getInstalled() as $installed) {
    100100            if (isset($installed['versions'][$packageName])) {
    101                 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
     101                return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
    102102            }
    103103        }
     
    120120    public static function satisfies(VersionParser $parser, $packageName, $constraint)
    121121    {
    122         $constraint = $parser->parseConstraints($constraint);
     122        $constraint = $parser->parseConstraints((string) $constraint);
    123123        $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
    124124
     
    329329                    $installed[] = self::$installedByVendor[$vendorDir];
    330330                } elseif (is_file($vendorDir.'/composer/installed.php')) {
    331                     $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
     331                    /** @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[]}>} $required */
     332                    $required = require $vendorDir.'/composer/installed.php';
     333                    $installed[] = self::$installedByVendor[$vendorDir] = $required;
    332334                    if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    333335                        self::$installed = $installed[count($installed) - 1];
     
    341343            // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
    342344            if (substr(__DIR__, -8, 1) !== 'C') {
    343                 self::$installed = require __DIR__ . '/installed.php';
     345                /** @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[]}>} $required */
     346                $required = require __DIR__ . '/installed.php';
     347                self::$installed = $required;
    344348            } else {
    345349                self::$installed = array();
    346350            }
    347351        }
    348         $installed[] = self::$installed;
     352
     353        if (self::$installed !== array()) {
     354            $installed[] = self::$installed;
     355        }
    349356
    350357        return $installed;
  • nextgen-gallery/trunk/vendor/composer/autoload_real.php

    r3003892 r3003964  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit865a398218c279eb1f33c4f1d4258211
     5class ComposerAutoloaderInit947270fe14b33b958df8910a24cbf812
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit865a398218c279eb1f33c4f1d4258211', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit947270fe14b33b958df8910a24cbf812', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit865a398218c279eb1f33c4f1d4258211', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit947270fe14b33b958df8910a24cbf812', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit865a398218c279eb1f33c4f1d4258211::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit947270fe14b33b958df8910a24cbf812::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $includeFiles = \Composer\Autoload\ComposerStaticInit865a398218c279eb1f33c4f1d4258211::$files;
    37         foreach ($includeFiles as $fileIdentifier => $file) {
    38             composerRequire865a398218c279eb1f33c4f1d4258211($fileIdentifier, $file);
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInit947270fe14b33b958df8910a24cbf812::$files;
     37        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
     38            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
     39                $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
     40
     41                require $file;
     42            }
     43        }, null, null);
     44        foreach ($filesToLoad as $fileIdentifier => $file) {
     45            $requireFile($fileIdentifier, $file);
    3946        }
    4047
     
    4249    }
    4350}
    44 
    45 /**
    46  * @param string $fileIdentifier
    47  * @param string $file
    48  * @return void
    49  */
    50 function composerRequire865a398218c279eb1f33c4f1d4258211($fileIdentifier, $file)
    51 {
    52     if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
    53         $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
    54 
    55         require $file;
    56     }
    57 }
  • nextgen-gallery/trunk/vendor/composer/autoload_static.php

    r3003892 r3003964  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit865a398218c279eb1f33c4f1d4258211
     7class ComposerStaticInit947270fe14b33b958df8910a24cbf812
    88{
    99    public static $files = array (
     
    2929    {
    3030        return \Closure::bind(function () use ($loader) {
    31             $loader->prefixesPsr0 = ComposerStaticInit865a398218c279eb1f33c4f1d4258211::$prefixesPsr0;
    32             $loader->classMap = ComposerStaticInit865a398218c279eb1f33c4f1d4258211::$classMap;
     31            $loader->prefixesPsr0 = ComposerStaticInit947270fe14b33b958df8910a24cbf812::$prefixesPsr0;
     32            $loader->classMap = ComposerStaticInit947270fe14b33b958df8910a24cbf812::$classMap;
    3333
    3434        }, null, ClassLoader::class);
  • nextgen-gallery/trunk/vendor/composer/installed.json

    r3003333 r3003964  
    8282            "time": "2023-11-10T13:42:01+00:00",
    8383            "type": "library",
    84             "installation-source": "dist",
     84            "installation-source": "source",
    8585            "autoload": {
    8686                "files": [
Note: See TracChangeset for help on using the changeset viewer.