Changeset 2881971
- Timestamp:
- 03/17/2023 02:25:12 PM (3 years ago)
- Location:
- wp-user-manager
- Files:
-
- 14 edited
- 11 copied
-
tags/2.9.5 (copied) (copied from wp-user-manager/trunk)
-
tags/2.9.5/changelog.txt (copied) (copied from wp-user-manager/trunk/changelog.txt) (1 diff)
-
tags/2.9.5/includes/admin/class-wpum-menus.php (modified) (1 diff)
-
tags/2.9.5/includes/admin/class-wpum-user-meta-custom-datastore.php (modified) (2 diffs)
-
tags/2.9.5/includes/class-wp-user-manager.php (copied) (copied from wp-user-manager/trunk/includes/class-wp-user-manager.php)
-
tags/2.9.5/includes/filters.php (copied) (copied from wp-user-manager/trunk/includes/filters.php)
-
tags/2.9.5/languages/wp-user-manager.pot (copied) (copied from wp-user-manager/trunk/languages/wp-user-manager.pot) (1 diff)
-
tags/2.9.5/readme.txt (copied) (copied from wp-user-manager/trunk/readme.txt) (2 diffs)
-
tags/2.9.5/vendor-dist/autoload.php (copied) (copied from wp-user-manager/trunk/vendor-dist/autoload.php) (1 diff)
-
tags/2.9.5/vendor-dist/composer/autoload_real.php (copied) (copied from wp-user-manager/trunk/vendor-dist/composer/autoload_real.php) (2 diffs)
-
tags/2.9.5/vendor-dist/composer/autoload_static.php (copied) (copied from wp-user-manager/trunk/vendor-dist/composer/autoload_static.php) (2 diffs)
-
tags/2.9.5/vendor-dist/composer/installed.php (copied) (copied from wp-user-manager/trunk/vendor-dist/composer/installed.php) (1 diff)
-
tags/2.9.5/vendor-dist/htmlburger/carbon-fields/core/Walker/Nav_Menu_Item_Edit_Walker.php (modified) (1 diff)
-
tags/2.9.5/wp-user-manager.php (copied) (copied from wp-user-manager/trunk/wp-user-manager.php) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/admin/class-wpum-menus.php (modified) (1 diff)
-
trunk/includes/admin/class-wpum-user-meta-custom-datastore.php (modified) (2 diffs)
-
trunk/languages/wp-user-manager.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor-dist/autoload.php (modified) (1 diff)
-
trunk/vendor-dist/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor-dist/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor-dist/composer/installed.php (modified) (1 diff)
-
trunk/vendor-dist/htmlburger/carbon-fields/core/Walker/Nav_Menu_Item_Edit_Walker.php (modified) (1 diff)
-
trunk/wp-user-manager.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-user-manager/tags/2.9.5/changelog.txt
r2881900 r2881971 2 2 3 3 == Changelog == 4 5 = 2.9.5 (17th March 2023) = 6 7 - Fix: PHP Fatal error: Uncaught Error: Class 'WPUM\Walker_Nav_Menu_Edit' not found 8 - Fix: Date picker not saving in correct format 9 - Fix: Repeater fields not loading correctly 4 10 5 11 = 2.9.4 (17th March 2023) = -
wp-user-manager/tags/2.9.5/includes/admin/class-wpum-menus.php
r2881128 r2881971 208 208 */ 209 209 public function nav_walker_overide_fix( $id, $item, $depth, $args ) { 210 if ( is_a( $args->walker, ' Carbon_Fields\\Walker\\Nav_Menu_Item_Edit_Walker' ) ) {210 if ( is_a( $args->walker, 'WPUM\\Carbon_Fields\\Walker\\Nav_Menu_Item_Edit_Walker' ) ) { 211 211 return; 212 212 } -
wp-user-manager/tags/2.9.5/includes/admin/class-wpum-user-meta-custom-datastore.php
r2881128 r2881971 59 59 $value = ''; 60 60 } 61 if ( empty( $value ) && is_a( $field, '\\ Carbon_Fields\\Field\\Complex_Field' ) ) {61 if ( empty( $value ) && is_a( $field, '\\WPUM\\Carbon_Fields\\Field\\Complex_Field' ) ) { 62 62 $value = array(); 63 63 } … … 80 80 $key = $this->get_key_for_field( $field ); 81 81 $value = $field->get_value(); 82 if ( is_a( $field, '\\ Carbon_Fields\\Field\\Complex_Field' ) ) {82 if ( is_a( $field, '\\WPUM\\Carbon_Fields\\Field\\Complex_Field' ) ) { 83 83 $value = $field->get_value_tree(); 84 84 } 85 85 86 if ( is_a( $field, '\\ Carbon_Fields\\Field\\Date_Field' ) ) {86 if ( is_a( $field, '\\WPUM\\Carbon_Fields\\Field\\Date_Field' ) ) { 87 87 $value = gmdate( 'Y-m-d', strtotime( $value ) ); 88 88 } -
wp-user-manager/tags/2.9.5/languages/wp-user-manager.pot
r2881900 r2881971 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP User Manager 2.9. 4\n"5 "Project-Id-Version: WP User Manager 2.9.5\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-user-manager\n" 7 "POT-Creation-Date: 2023-03-17 1 2:41:48+00:00\n"7 "POT-Creation-Date: 2023-03-17 14:23:06+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" -
wp-user-manager/tags/2.9.5/readme.txt
r2881900 r2881971 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 Stable Tag: 2.9. 411 Stable Tag: 2.9.5 12 12 13 13 The most customizable profiles & community builder WordPress plugin with front-end login, registration, profile customization and content restriction. … … 131 131 == Changelog == 132 132 133 = 2.9.5 (17th March 2023) = 134 135 - Fix: PHP Fatal error: Uncaught Error: Class 'WPUM\Walker_Nav_Menu_Edit' not found 136 - Fix: Date picker not saving in correct format 137 - Fix: Repeater fields not loading correctly 138 133 139 = 2.9.4 (17th March 2023) = 134 140 -
wp-user-manager/tags/2.9.5/vendor-dist/autoload.php
r2881900 r2881971 19 19 } 20 20 require_once __DIR__ . '/composer/autoload_real.php'; 21 return ComposerAutoloaderInit cb17e58721b0e77b2c801723be9b8068::getLoader();21 return ComposerAutoloaderInit71dd66d06c2b3146a4d8573f25092088::getLoader(); -
wp-user-manager/tags/2.9.5/vendor-dist/composer/autoload_real.php
r2881900 r2881971 4 4 5 5 // autoload_real.php @generated by Composer 6 class ComposerAutoloaderInit cb17e58721b0e77b2c801723be9b80686 class ComposerAutoloaderInit71dd66d06c2b3146a4d8573f25092088 7 7 { 8 8 private static $loader; … … 22 22 } 23 23 require __DIR__ . '/platform_check.php'; 24 \spl_autoload_register(array('WPUM\\ComposerAutoloaderInit cb17e58721b0e77b2c801723be9b8068', 'loadClassLoader'), \true, \true);24 \spl_autoload_register(array('WPUM\\ComposerAutoloaderInit71dd66d06c2b3146a4d8573f25092088', 'loadClassLoader'), \true, \true); 25 25 self::$loader = $loader = new \WPUM\Composer\Autoload\ClassLoader(\dirname(__DIR__)); 26 \spl_autoload_unregister(array('WPUM\\ComposerAutoloaderInit cb17e58721b0e77b2c801723be9b8068', 'loadClassLoader'));26 \spl_autoload_unregister(array('WPUM\\ComposerAutoloaderInit71dd66d06c2b3146a4d8573f25092088', 'loadClassLoader')); 27 27 require __DIR__ . '/autoload_static.php'; 28 \call_user_func(\WPUM\Composer\Autoload\ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::getInitializer($loader));28 \call_user_func(\WPUM\Composer\Autoload\ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::getInitializer($loader)); 29 29 $loader->register(\true); 30 $filesToLoad = \WPUM\Composer\Autoload\ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::$files;30 $filesToLoad = \WPUM\Composer\Autoload\ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::$files; 31 31 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 32 32 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
wp-user-manager/tags/2.9.5/vendor-dist/composer/autoload_static.php
r2881900 r2881971 4 4 namespace WPUM\Composer\Autoload; 5 5 6 class ComposerStaticInit cb17e58721b0e77b2c801723be9b80686 class ComposerStaticInit71dd66d06c2b3146a4d8573f25092088 7 7 { 8 8 public static $files = array('0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', '253c157292f75eb38082b5acb06f3f01' => __DIR__ . '/..' . '/nikic/fast-route/src/functions.php', 'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php', 'b5020c445617d804f0c014177f92907a' => __DIR__ . '/..' . '/wp-user-manager/wpum-blocks/blocks-loader.php', 'e7a23b473708f4b0fb5b99fe921bee83' => __DIR__ . '/..' . '/wpbp/widgets-helper/wph-widget.php'); … … 13 13 { 14 14 return \Closure::bind(function () use($loader) { 15 $loader->prefixLengthsPsr4 = ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::$prefixLengthsPsr4;16 $loader->prefixDirsPsr4 = ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::$prefixDirsPsr4;17 $loader->classMap = ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::$classMap;15 $loader->prefixLengthsPsr4 = ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::$prefixLengthsPsr4; 16 $loader->prefixDirsPsr4 = ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::$prefixDirsPsr4; 17 $loader->classMap = ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::$classMap; 18 18 }, null, ClassLoader::class); 19 19 } -
wp-user-manager/tags/2.9.5/vendor-dist/composer/installed.php
r2881900 r2881971 3 3 namespace WPUM; 4 4 5 return array('root' => array('name' => 'wp-user-manager/wp-user-manager', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => ' 4aa5da29cca9149f52fa593ab16e44e7bad4e6dd', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('brain/cortex' => array('pretty_version' => 'dev-refactoring-fastroute', 'version' => 'dev-refactoring-fastroute', 'reference' => 'dd6484cd8b049a141b5a73746857fa5415caaca4', 'type' => 'library', 'install_path' => __DIR__ . '/../brain/cortex', 'aliases' => array(0 => '9999999-dev'), 'dev_requirement' => \false), 'composer/installers' => array('pretty_version' => '1.x-dev', 'version' => '1.9999999.9999999.9999999-dev', 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/./installers', 'aliases' => array(), 'dev_requirement' => \false), 'dompdf/dompdf' => array('pretty_version' => 'v2.0.2', 'version' => '2.0.2.0', 'reference' => 'ad4c631bf8897fc1ca7b566468a969cfd71a558a', 'type' => 'library', 'install_path' => __DIR__ . '/../dompdf/dompdf', 'aliases' => array(), 'dev_requirement' => \false), 'gamajo/template-loader' => array('pretty_version' => '1.3.1', 'version' => '1.3.1.0', 'reference' => 'fa92a37b780d945463f7fea328dce14933558752', 'type' => 'library', 'install_path' => __DIR__ . '/../gamajo/template-loader', 'aliases' => array(), 'dev_requirement' => \false), 'htmlburger/carbon-fields' => array('pretty_version' => '2.2.0', 'version' => '2.2.0.0', 'reference' => 'f2e7e7b306f872b606b16909d2a2ee906381d5d1', 'type' => 'library', 'install_path' => __DIR__ . '/../htmlburger/carbon-fields', 'aliases' => array(), 'dev_requirement' => \false), 'masterminds/html5' => array('pretty_version' => '2.7.6', 'version' => '2.7.6.0', 'reference' => '897eb517a343a2281f11bc5556d6548db7d93947', 'type' => 'library', 'install_path' => __DIR__ . '/../masterminds/html5', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.66.0', 'version' => '2.66.0.0', 'reference' => '496712849902241f04902033b0441b269effe001', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'nikic/fast-route' => array('pretty_version' => 'v0.7.0', 'version' => '0.7.0.0', 'reference' => '8164b4a0d8afde4eae5f1bfc39084972ba23ad36', 'type' => 'library', 'install_path' => __DIR__ . '/../nikic/fast-route', 'aliases' => array(), 'dev_requirement' => \false), 'phenx/php-font-lib' => array('pretty_version' => '0.5.4', 'version' => '0.5.4.0', 'reference' => 'dd448ad1ce34c63d09baccd05415e361300c35b4', 'type' => 'library', 'install_path' => __DIR__ . '/../phenx/php-font-lib', 'aliases' => array(), 'dev_requirement' => \false), 'phenx/php-svg-lib' => array('pretty_version' => '0.5.0', 'version' => '0.5.0.0', 'reference' => '76876c6cf3080bcb6f249d7d59705108166a6685', 'type' => 'library', 'install_path' => __DIR__ . '/../phenx/php-svg-lib', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'roundcube/plugin-installer' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'sabberworm/php-css-parser' => array('pretty_version' => '8.4.0', 'version' => '8.4.0.0', 'reference' => 'e41d2140031d533348b2192a83f02d8dd8a71d30', 'type' => 'library', 'install_path' => __DIR__ . '/../sabberworm/php-css-parser', 'aliases' => array(), 'dev_requirement' => \false), 'shama/baton' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'stripe/stripe-php' => array('pretty_version' => 'v10.5.0', 'version' => '10.5.0.0', 'reference' => '331415b232d60d7c0449de7bde4cb7d4fedf982e', 'type' => 'library', 'install_path' => __DIR__ . '/../stripe/stripe-php', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.26.0', 'version' => '1.26.0.0', 'reference' => '9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.26.0', 'version' => '1.26.0.0', 'reference' => 'cfa0ae98841b9e461207c13ab093d76b0fa7bace', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.11', 'version' => '5.4.11.0', 'reference' => '7a1a8f6bbff269f434a83343a0a5d36a4f8cfa21', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3')), 'wearerequired/wp-requirements-check' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '82b8a6c4b953f59e7e534df2d4287e34af950812', 'type' => 'library', 'install_path' => __DIR__ . '/../wearerequired/wp-requirements-check', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wp-notices' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5498f209c6667e88e944194a93a50f9ffc25ea24', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wp-notices', 'aliases' => array(0 => '9999999-dev'), 'dev_requirement' => \false), 'wp-user-manager/wp-optionskit' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '6253bda447991733bf8e19cb2123b41c666f3d62', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wp-optionskit', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wp-user-manager' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '4aa5da29cca9149f52fa593ab16e44e7bad4e6dd', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wpum-blocks' => array('pretty_version' => '1.14', 'version' => '1.14.0.0', 'reference' => 'f9a85366c30911f6be6386059e4425bd3159a0c9', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wpum-blocks', 'aliases' => array(), 'dev_requirement' => \false), 'wpbp/widgets-helper' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5547acaaf60b856b0025cdf44e3831e0f3202929', 'type' => 'library', 'install_path' => __DIR__ . '/../wpbp/widgets-helper', 'aliases' => array(), 'dev_requirement' => \false)));5 return array('root' => array('name' => 'wp-user-manager/wp-user-manager', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '8739141b34666b8eada897b1123e8a6a511949c6', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('brain/cortex' => array('pretty_version' => 'dev-refactoring-fastroute', 'version' => 'dev-refactoring-fastroute', 'reference' => 'dd6484cd8b049a141b5a73746857fa5415caaca4', 'type' => 'library', 'install_path' => __DIR__ . '/../brain/cortex', 'aliases' => array(0 => '9999999-dev'), 'dev_requirement' => \false), 'composer/installers' => array('pretty_version' => '1.x-dev', 'version' => '1.9999999.9999999.9999999-dev', 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/./installers', 'aliases' => array(), 'dev_requirement' => \false), 'dompdf/dompdf' => array('pretty_version' => 'v2.0.2', 'version' => '2.0.2.0', 'reference' => 'ad4c631bf8897fc1ca7b566468a969cfd71a558a', 'type' => 'library', 'install_path' => __DIR__ . '/../dompdf/dompdf', 'aliases' => array(), 'dev_requirement' => \false), 'gamajo/template-loader' => array('pretty_version' => '1.3.1', 'version' => '1.3.1.0', 'reference' => 'fa92a37b780d945463f7fea328dce14933558752', 'type' => 'library', 'install_path' => __DIR__ . '/../gamajo/template-loader', 'aliases' => array(), 'dev_requirement' => \false), 'htmlburger/carbon-fields' => array('pretty_version' => '2.2.0', 'version' => '2.2.0.0', 'reference' => 'f2e7e7b306f872b606b16909d2a2ee906381d5d1', 'type' => 'library', 'install_path' => __DIR__ . '/../htmlburger/carbon-fields', 'aliases' => array(), 'dev_requirement' => \false), 'masterminds/html5' => array('pretty_version' => '2.7.6', 'version' => '2.7.6.0', 'reference' => '897eb517a343a2281f11bc5556d6548db7d93947', 'type' => 'library', 'install_path' => __DIR__ . '/../masterminds/html5', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.66.0', 'version' => '2.66.0.0', 'reference' => '496712849902241f04902033b0441b269effe001', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'nikic/fast-route' => array('pretty_version' => 'v0.7.0', 'version' => '0.7.0.0', 'reference' => '8164b4a0d8afde4eae5f1bfc39084972ba23ad36', 'type' => 'library', 'install_path' => __DIR__ . '/../nikic/fast-route', 'aliases' => array(), 'dev_requirement' => \false), 'phenx/php-font-lib' => array('pretty_version' => '0.5.4', 'version' => '0.5.4.0', 'reference' => 'dd448ad1ce34c63d09baccd05415e361300c35b4', 'type' => 'library', 'install_path' => __DIR__ . '/../phenx/php-font-lib', 'aliases' => array(), 'dev_requirement' => \false), 'phenx/php-svg-lib' => array('pretty_version' => '0.5.0', 'version' => '0.5.0.0', 'reference' => '76876c6cf3080bcb6f249d7d59705108166a6685', 'type' => 'library', 'install_path' => __DIR__ . '/../phenx/php-svg-lib', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'roundcube/plugin-installer' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'sabberworm/php-css-parser' => array('pretty_version' => '8.4.0', 'version' => '8.4.0.0', 'reference' => 'e41d2140031d533348b2192a83f02d8dd8a71d30', 'type' => 'library', 'install_path' => __DIR__ . '/../sabberworm/php-css-parser', 'aliases' => array(), 'dev_requirement' => \false), 'shama/baton' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'stripe/stripe-php' => array('pretty_version' => 'v10.5.0', 'version' => '10.5.0.0', 'reference' => '331415b232d60d7c0449de7bde4cb7d4fedf982e', 'type' => 'library', 'install_path' => __DIR__ . '/../stripe/stripe-php', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.26.0', 'version' => '1.26.0.0', 'reference' => '9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.26.0', 'version' => '1.26.0.0', 'reference' => 'cfa0ae98841b9e461207c13ab093d76b0fa7bace', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.11', 'version' => '5.4.11.0', 'reference' => '7a1a8f6bbff269f434a83343a0a5d36a4f8cfa21', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3')), 'wearerequired/wp-requirements-check' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '82b8a6c4b953f59e7e534df2d4287e34af950812', 'type' => 'library', 'install_path' => __DIR__ . '/../wearerequired/wp-requirements-check', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wp-notices' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5498f209c6667e88e944194a93a50f9ffc25ea24', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wp-notices', 'aliases' => array(0 => '9999999-dev'), 'dev_requirement' => \false), 'wp-user-manager/wp-optionskit' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '6253bda447991733bf8e19cb2123b41c666f3d62', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wp-optionskit', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wp-user-manager' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '8739141b34666b8eada897b1123e8a6a511949c6', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wpum-blocks' => array('pretty_version' => '1.14', 'version' => '1.14.0.0', 'reference' => 'f9a85366c30911f6be6386059e4425bd3159a0c9', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wpum-blocks', 'aliases' => array(), 'dev_requirement' => \false), 'wpbp/widgets-helper' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5547acaaf60b856b0025cdf44e3831e0f3202929', 'type' => 'library', 'install_path' => __DIR__ . '/../wpbp/widgets-helper', 'aliases' => array(), 'dev_requirement' => \false))); -
wp-user-manager/tags/2.9.5/vendor-dist/htmlburger/carbon-fields/core/Walker/Nav_Menu_Item_Edit_Walker.php
r2881136 r2881971 8 8 * @uses Walker_Nav_Menu_Item_Edit 9 9 */ 10 class Nav_Menu_Item_Edit_Walker extends \W PUM\Walker_Nav_Menu_Edit10 class Nav_Menu_Item_Edit_Walker extends \Walker_Nav_Menu_Edit 11 11 { 12 12 /** -
wp-user-manager/tags/2.9.5/wp-user-manager.php
r2881900 r2881971 4 4 * Plugin URI: https://wpusermanager.com 5 5 * Description: Beautifully simple user profile directories with frontend login, registration and account customization. WP User Manager is the best solution to manage your community and your users for WordPress. 6 * Version: 2.9. 46 * Version: 2.9.5 7 7 * Author: WP User Manager 8 8 * Author URI: https://wpusermanager.com … … 21 21 require_once dirname( __FILE__ ) . '/includes/class-wp-user-manager.php'; 22 22 23 return WP_User_Manager::instance( __FILE__, '2.9. 4' );23 return WP_User_Manager::instance( __FILE__, '2.9.5' ); 24 24 } 25 25 -
wp-user-manager/trunk/changelog.txt
r2881900 r2881971 2 2 3 3 == Changelog == 4 5 = 2.9.5 (17th March 2023) = 6 7 - Fix: PHP Fatal error: Uncaught Error: Class 'WPUM\Walker_Nav_Menu_Edit' not found 8 - Fix: Date picker not saving in correct format 9 - Fix: Repeater fields not loading correctly 4 10 5 11 = 2.9.4 (17th March 2023) = -
wp-user-manager/trunk/includes/admin/class-wpum-menus.php
r2881128 r2881971 208 208 */ 209 209 public function nav_walker_overide_fix( $id, $item, $depth, $args ) { 210 if ( is_a( $args->walker, ' Carbon_Fields\\Walker\\Nav_Menu_Item_Edit_Walker' ) ) {210 if ( is_a( $args->walker, 'WPUM\\Carbon_Fields\\Walker\\Nav_Menu_Item_Edit_Walker' ) ) { 211 211 return; 212 212 } -
wp-user-manager/trunk/includes/admin/class-wpum-user-meta-custom-datastore.php
r2881128 r2881971 59 59 $value = ''; 60 60 } 61 if ( empty( $value ) && is_a( $field, '\\ Carbon_Fields\\Field\\Complex_Field' ) ) {61 if ( empty( $value ) && is_a( $field, '\\WPUM\\Carbon_Fields\\Field\\Complex_Field' ) ) { 62 62 $value = array(); 63 63 } … … 80 80 $key = $this->get_key_for_field( $field ); 81 81 $value = $field->get_value(); 82 if ( is_a( $field, '\\ Carbon_Fields\\Field\\Complex_Field' ) ) {82 if ( is_a( $field, '\\WPUM\\Carbon_Fields\\Field\\Complex_Field' ) ) { 83 83 $value = $field->get_value_tree(); 84 84 } 85 85 86 if ( is_a( $field, '\\ Carbon_Fields\\Field\\Date_Field' ) ) {86 if ( is_a( $field, '\\WPUM\\Carbon_Fields\\Field\\Date_Field' ) ) { 87 87 $value = gmdate( 'Y-m-d', strtotime( $value ) ); 88 88 } -
wp-user-manager/trunk/languages/wp-user-manager.pot
r2881900 r2881971 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP User Manager 2.9. 4\n"5 "Project-Id-Version: WP User Manager 2.9.5\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-user-manager\n" 7 "POT-Creation-Date: 2023-03-17 1 2:41:48+00:00\n"7 "POT-Creation-Date: 2023-03-17 14:23:06+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" -
wp-user-manager/trunk/readme.txt
r2881900 r2881971 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 Stable Tag: 2.9. 411 Stable Tag: 2.9.5 12 12 13 13 The most customizable profiles & community builder WordPress plugin with front-end login, registration, profile customization and content restriction. … … 131 131 == Changelog == 132 132 133 = 2.9.5 (17th March 2023) = 134 135 - Fix: PHP Fatal error: Uncaught Error: Class 'WPUM\Walker_Nav_Menu_Edit' not found 136 - Fix: Date picker not saving in correct format 137 - Fix: Repeater fields not loading correctly 138 133 139 = 2.9.4 (17th March 2023) = 134 140 -
wp-user-manager/trunk/vendor-dist/autoload.php
r2881900 r2881971 19 19 } 20 20 require_once __DIR__ . '/composer/autoload_real.php'; 21 return ComposerAutoloaderInit cb17e58721b0e77b2c801723be9b8068::getLoader();21 return ComposerAutoloaderInit71dd66d06c2b3146a4d8573f25092088::getLoader(); -
wp-user-manager/trunk/vendor-dist/composer/autoload_real.php
r2881900 r2881971 4 4 5 5 // autoload_real.php @generated by Composer 6 class ComposerAutoloaderInit cb17e58721b0e77b2c801723be9b80686 class ComposerAutoloaderInit71dd66d06c2b3146a4d8573f25092088 7 7 { 8 8 private static $loader; … … 22 22 } 23 23 require __DIR__ . '/platform_check.php'; 24 \spl_autoload_register(array('WPUM\\ComposerAutoloaderInit cb17e58721b0e77b2c801723be9b8068', 'loadClassLoader'), \true, \true);24 \spl_autoload_register(array('WPUM\\ComposerAutoloaderInit71dd66d06c2b3146a4d8573f25092088', 'loadClassLoader'), \true, \true); 25 25 self::$loader = $loader = new \WPUM\Composer\Autoload\ClassLoader(\dirname(__DIR__)); 26 \spl_autoload_unregister(array('WPUM\\ComposerAutoloaderInit cb17e58721b0e77b2c801723be9b8068', 'loadClassLoader'));26 \spl_autoload_unregister(array('WPUM\\ComposerAutoloaderInit71dd66d06c2b3146a4d8573f25092088', 'loadClassLoader')); 27 27 require __DIR__ . '/autoload_static.php'; 28 \call_user_func(\WPUM\Composer\Autoload\ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::getInitializer($loader));28 \call_user_func(\WPUM\Composer\Autoload\ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::getInitializer($loader)); 29 29 $loader->register(\true); 30 $filesToLoad = \WPUM\Composer\Autoload\ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::$files;30 $filesToLoad = \WPUM\Composer\Autoload\ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::$files; 31 31 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 32 32 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
wp-user-manager/trunk/vendor-dist/composer/autoload_static.php
r2881900 r2881971 4 4 namespace WPUM\Composer\Autoload; 5 5 6 class ComposerStaticInit cb17e58721b0e77b2c801723be9b80686 class ComposerStaticInit71dd66d06c2b3146a4d8573f25092088 7 7 { 8 8 public static $files = array('0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', '253c157292f75eb38082b5acb06f3f01' => __DIR__ . '/..' . '/nikic/fast-route/src/functions.php', 'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php', 'b5020c445617d804f0c014177f92907a' => __DIR__ . '/..' . '/wp-user-manager/wpum-blocks/blocks-loader.php', 'e7a23b473708f4b0fb5b99fe921bee83' => __DIR__ . '/..' . '/wpbp/widgets-helper/wph-widget.php'); … … 13 13 { 14 14 return \Closure::bind(function () use($loader) { 15 $loader->prefixLengthsPsr4 = ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::$prefixLengthsPsr4;16 $loader->prefixDirsPsr4 = ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::$prefixDirsPsr4;17 $loader->classMap = ComposerStaticInit cb17e58721b0e77b2c801723be9b8068::$classMap;15 $loader->prefixLengthsPsr4 = ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::$prefixLengthsPsr4; 16 $loader->prefixDirsPsr4 = ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::$prefixDirsPsr4; 17 $loader->classMap = ComposerStaticInit71dd66d06c2b3146a4d8573f25092088::$classMap; 18 18 }, null, ClassLoader::class); 19 19 } -
wp-user-manager/trunk/vendor-dist/composer/installed.php
r2881900 r2881971 3 3 namespace WPUM; 4 4 5 return array('root' => array('name' => 'wp-user-manager/wp-user-manager', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => ' 4aa5da29cca9149f52fa593ab16e44e7bad4e6dd', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('brain/cortex' => array('pretty_version' => 'dev-refactoring-fastroute', 'version' => 'dev-refactoring-fastroute', 'reference' => 'dd6484cd8b049a141b5a73746857fa5415caaca4', 'type' => 'library', 'install_path' => __DIR__ . '/../brain/cortex', 'aliases' => array(0 => '9999999-dev'), 'dev_requirement' => \false), 'composer/installers' => array('pretty_version' => '1.x-dev', 'version' => '1.9999999.9999999.9999999-dev', 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/./installers', 'aliases' => array(), 'dev_requirement' => \false), 'dompdf/dompdf' => array('pretty_version' => 'v2.0.2', 'version' => '2.0.2.0', 'reference' => 'ad4c631bf8897fc1ca7b566468a969cfd71a558a', 'type' => 'library', 'install_path' => __DIR__ . '/../dompdf/dompdf', 'aliases' => array(), 'dev_requirement' => \false), 'gamajo/template-loader' => array('pretty_version' => '1.3.1', 'version' => '1.3.1.0', 'reference' => 'fa92a37b780d945463f7fea328dce14933558752', 'type' => 'library', 'install_path' => __DIR__ . '/../gamajo/template-loader', 'aliases' => array(), 'dev_requirement' => \false), 'htmlburger/carbon-fields' => array('pretty_version' => '2.2.0', 'version' => '2.2.0.0', 'reference' => 'f2e7e7b306f872b606b16909d2a2ee906381d5d1', 'type' => 'library', 'install_path' => __DIR__ . '/../htmlburger/carbon-fields', 'aliases' => array(), 'dev_requirement' => \false), 'masterminds/html5' => array('pretty_version' => '2.7.6', 'version' => '2.7.6.0', 'reference' => '897eb517a343a2281f11bc5556d6548db7d93947', 'type' => 'library', 'install_path' => __DIR__ . '/../masterminds/html5', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.66.0', 'version' => '2.66.0.0', 'reference' => '496712849902241f04902033b0441b269effe001', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'nikic/fast-route' => array('pretty_version' => 'v0.7.0', 'version' => '0.7.0.0', 'reference' => '8164b4a0d8afde4eae5f1bfc39084972ba23ad36', 'type' => 'library', 'install_path' => __DIR__ . '/../nikic/fast-route', 'aliases' => array(), 'dev_requirement' => \false), 'phenx/php-font-lib' => array('pretty_version' => '0.5.4', 'version' => '0.5.4.0', 'reference' => 'dd448ad1ce34c63d09baccd05415e361300c35b4', 'type' => 'library', 'install_path' => __DIR__ . '/../phenx/php-font-lib', 'aliases' => array(), 'dev_requirement' => \false), 'phenx/php-svg-lib' => array('pretty_version' => '0.5.0', 'version' => '0.5.0.0', 'reference' => '76876c6cf3080bcb6f249d7d59705108166a6685', 'type' => 'library', 'install_path' => __DIR__ . '/../phenx/php-svg-lib', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'roundcube/plugin-installer' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'sabberworm/php-css-parser' => array('pretty_version' => '8.4.0', 'version' => '8.4.0.0', 'reference' => 'e41d2140031d533348b2192a83f02d8dd8a71d30', 'type' => 'library', 'install_path' => __DIR__ . '/../sabberworm/php-css-parser', 'aliases' => array(), 'dev_requirement' => \false), 'shama/baton' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'stripe/stripe-php' => array('pretty_version' => 'v10.5.0', 'version' => '10.5.0.0', 'reference' => '331415b232d60d7c0449de7bde4cb7d4fedf982e', 'type' => 'library', 'install_path' => __DIR__ . '/../stripe/stripe-php', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.26.0', 'version' => '1.26.0.0', 'reference' => '9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.26.0', 'version' => '1.26.0.0', 'reference' => 'cfa0ae98841b9e461207c13ab093d76b0fa7bace', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.11', 'version' => '5.4.11.0', 'reference' => '7a1a8f6bbff269f434a83343a0a5d36a4f8cfa21', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3')), 'wearerequired/wp-requirements-check' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '82b8a6c4b953f59e7e534df2d4287e34af950812', 'type' => 'library', 'install_path' => __DIR__ . '/../wearerequired/wp-requirements-check', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wp-notices' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5498f209c6667e88e944194a93a50f9ffc25ea24', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wp-notices', 'aliases' => array(0 => '9999999-dev'), 'dev_requirement' => \false), 'wp-user-manager/wp-optionskit' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '6253bda447991733bf8e19cb2123b41c666f3d62', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wp-optionskit', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wp-user-manager' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '4aa5da29cca9149f52fa593ab16e44e7bad4e6dd', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wpum-blocks' => array('pretty_version' => '1.14', 'version' => '1.14.0.0', 'reference' => 'f9a85366c30911f6be6386059e4425bd3159a0c9', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wpum-blocks', 'aliases' => array(), 'dev_requirement' => \false), 'wpbp/widgets-helper' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5547acaaf60b856b0025cdf44e3831e0f3202929', 'type' => 'library', 'install_path' => __DIR__ . '/../wpbp/widgets-helper', 'aliases' => array(), 'dev_requirement' => \false)));5 return array('root' => array('name' => 'wp-user-manager/wp-user-manager', 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '8739141b34666b8eada897b1123e8a6a511949c6', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('brain/cortex' => array('pretty_version' => 'dev-refactoring-fastroute', 'version' => 'dev-refactoring-fastroute', 'reference' => 'dd6484cd8b049a141b5a73746857fa5415caaca4', 'type' => 'library', 'install_path' => __DIR__ . '/../brain/cortex', 'aliases' => array(0 => '9999999-dev'), 'dev_requirement' => \false), 'composer/installers' => array('pretty_version' => '1.x-dev', 'version' => '1.9999999.9999999.9999999-dev', 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/./installers', 'aliases' => array(), 'dev_requirement' => \false), 'dompdf/dompdf' => array('pretty_version' => 'v2.0.2', 'version' => '2.0.2.0', 'reference' => 'ad4c631bf8897fc1ca7b566468a969cfd71a558a', 'type' => 'library', 'install_path' => __DIR__ . '/../dompdf/dompdf', 'aliases' => array(), 'dev_requirement' => \false), 'gamajo/template-loader' => array('pretty_version' => '1.3.1', 'version' => '1.3.1.0', 'reference' => 'fa92a37b780d945463f7fea328dce14933558752', 'type' => 'library', 'install_path' => __DIR__ . '/../gamajo/template-loader', 'aliases' => array(), 'dev_requirement' => \false), 'htmlburger/carbon-fields' => array('pretty_version' => '2.2.0', 'version' => '2.2.0.0', 'reference' => 'f2e7e7b306f872b606b16909d2a2ee906381d5d1', 'type' => 'library', 'install_path' => __DIR__ . '/../htmlburger/carbon-fields', 'aliases' => array(), 'dev_requirement' => \false), 'masterminds/html5' => array('pretty_version' => '2.7.6', 'version' => '2.7.6.0', 'reference' => '897eb517a343a2281f11bc5556d6548db7d93947', 'type' => 'library', 'install_path' => __DIR__ . '/../masterminds/html5', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.66.0', 'version' => '2.66.0.0', 'reference' => '496712849902241f04902033b0441b269effe001', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'nikic/fast-route' => array('pretty_version' => 'v0.7.0', 'version' => '0.7.0.0', 'reference' => '8164b4a0d8afde4eae5f1bfc39084972ba23ad36', 'type' => 'library', 'install_path' => __DIR__ . '/../nikic/fast-route', 'aliases' => array(), 'dev_requirement' => \false), 'phenx/php-font-lib' => array('pretty_version' => '0.5.4', 'version' => '0.5.4.0', 'reference' => 'dd448ad1ce34c63d09baccd05415e361300c35b4', 'type' => 'library', 'install_path' => __DIR__ . '/../phenx/php-font-lib', 'aliases' => array(), 'dev_requirement' => \false), 'phenx/php-svg-lib' => array('pretty_version' => '0.5.0', 'version' => '0.5.0.0', 'reference' => '76876c6cf3080bcb6f249d7d59705108166a6685', 'type' => 'library', 'install_path' => __DIR__ . '/../phenx/php-svg-lib', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'roundcube/plugin-installer' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'sabberworm/php-css-parser' => array('pretty_version' => '8.4.0', 'version' => '8.4.0.0', 'reference' => 'e41d2140031d533348b2192a83f02d8dd8a71d30', 'type' => 'library', 'install_path' => __DIR__ . '/../sabberworm/php-css-parser', 'aliases' => array(), 'dev_requirement' => \false), 'shama/baton' => array('dev_requirement' => \false, 'replaced' => array(0 => '*')), 'stripe/stripe-php' => array('pretty_version' => 'v10.5.0', 'version' => '10.5.0.0', 'reference' => '331415b232d60d7c0449de7bde4cb7d4fedf982e', 'type' => 'library', 'install_path' => __DIR__ . '/../stripe/stripe-php', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.26.0', 'version' => '1.26.0.0', 'reference' => '9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.26.0', 'version' => '1.26.0.0', 'reference' => 'cfa0ae98841b9e461207c13ab093d76b0fa7bace', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.11', 'version' => '5.4.11.0', 'reference' => '7a1a8f6bbff269f434a83343a0a5d36a4f8cfa21', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3')), 'wearerequired/wp-requirements-check' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '82b8a6c4b953f59e7e534df2d4287e34af950812', 'type' => 'library', 'install_path' => __DIR__ . '/../wearerequired/wp-requirements-check', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wp-notices' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5498f209c6667e88e944194a93a50f9ffc25ea24', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wp-notices', 'aliases' => array(0 => '9999999-dev'), 'dev_requirement' => \false), 'wp-user-manager/wp-optionskit' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'reference' => '6253bda447991733bf8e19cb2123b41c666f3d62', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wp-optionskit', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wp-user-manager' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '8739141b34666b8eada897b1123e8a6a511949c6', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'wp-user-manager/wpum-blocks' => array('pretty_version' => '1.14', 'version' => '1.14.0.0', 'reference' => 'f9a85366c30911f6be6386059e4425bd3159a0c9', 'type' => 'library', 'install_path' => __DIR__ . '/../wp-user-manager/wpum-blocks', 'aliases' => array(), 'dev_requirement' => \false), 'wpbp/widgets-helper' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'reference' => '5547acaaf60b856b0025cdf44e3831e0f3202929', 'type' => 'library', 'install_path' => __DIR__ . '/../wpbp/widgets-helper', 'aliases' => array(), 'dev_requirement' => \false))); -
wp-user-manager/trunk/vendor-dist/htmlburger/carbon-fields/core/Walker/Nav_Menu_Item_Edit_Walker.php
r2881136 r2881971 8 8 * @uses Walker_Nav_Menu_Item_Edit 9 9 */ 10 class Nav_Menu_Item_Edit_Walker extends \W PUM\Walker_Nav_Menu_Edit10 class Nav_Menu_Item_Edit_Walker extends \Walker_Nav_Menu_Edit 11 11 { 12 12 /** -
wp-user-manager/trunk/wp-user-manager.php
r2881900 r2881971 4 4 * Plugin URI: https://wpusermanager.com 5 5 * Description: Beautifully simple user profile directories with frontend login, registration and account customization. WP User Manager is the best solution to manage your community and your users for WordPress. 6 * Version: 2.9. 46 * Version: 2.9.5 7 7 * Author: WP User Manager 8 8 * Author URI: https://wpusermanager.com … … 21 21 require_once dirname( __FILE__ ) . '/includes/class-wp-user-manager.php'; 22 22 23 return WP_User_Manager::instance( __FILE__, '2.9. 4' );23 return WP_User_Manager::instance( __FILE__, '2.9.5' ); 24 24 } 25 25
Note: See TracChangeset
for help on using the changeset viewer.