This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/polylang.php b/polylang.php | |
| index 030a4e0..5c1f2d5 100644 | |
| --- a/polylang.php | |
| +++ b/polylang.php | |
| @@ -67,7 +67,7 @@ if ( defined( 'POLYLANG_BASENAME' ) ) { | |
| } | |
| require __DIR__ . '/vendor/autoload.php'; | |
| -require __DIR__ . '/vendor/wpsyntex/polylang/polylang.php'; | |
| +// require __DIR__ . '/vendor/wpsyntex/polylang/polylang.php'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Don't forget to set your | |
| # @{project_dirs} = {foo,bar,...} # relative to $HOME | |
| # inside some /etc/apparmor.d/tunables/home.d/*.conf file | |
| abi <abi/4.0>, | |
| include <tunables/global> | |
| include <local/my-ssh> | |
| profile node /usr/{local/,}bin/{node,deno} { | |
| deny capability sys_admin, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sed -i '/public static function get_key_info/s/{$/{ return ["is_active"=>1];/' plugins/gravityforms/common.php | |
| sed -i '/function acf_register_plugin_update/s/{$/{ return;/' plugins/advanced-custom-fields-pro/includes/Updater/init.php | |
| // WPML, you're next |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/etc/apparmor.d/cursor | |
| abi <abi/4.0>, | |
| include <tunables/global> | |
| # observed net accesses | |
| # - api3.cursor.sh.cdn.cloudflare.net. | |
| # - cursor.sh.cdn.cloudflare.net. | |
| # - cursorapi.com. | |
| # - cursor-cdn.com. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/vendor/otgs/installer/includes/class-wp-installer-channels.php b/vendor/otgs/installer/includes/class-wp-installer-channels.php | |
| index 57a225f..6f88811 100644 | |
| --- a/vendor/otgs/installer/includes/class-wp-installer-channels.php | |
| +++ b/vendor/otgs/installer/includes/class-wp-installer-channels.php | |
| @@ -234,6 +234,7 @@ class WP_Installer_Channels{ | |
| unset ( $downloads[ $type ][ $slug ]['channels'] ); | |
| $downloads[ $type ][ $slug ]['extra_channels'] = array(); | |
| + $downloads[ $type ][ $slug ]['changelog'] = ''; | |
| if( isset( $download['channels'] ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * extract/decrypt signal-desktop (on mac/linux) sqlcipher database encrypted key | |
| * see https://github.com/signalapp/Signal-Desktop/issues/7005 | |
| * drzraf, 2025 | |
| */ | |
| error_reporting(-1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| # Copyright (C) 2020, Raphaël . Droz + floss @ gmail DOT com | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # Decrypt a file encrypted using Pydio-cells, assuming are provided | |
| # - export the encrypted master key as exported by the UI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/gravityforms-html5-validation.php b/gravityforms-html5-validation.php | |
| index 5e2c9e0..8eacfed 100644 | |
| --- a/gravityforms-html5-validation.php | |
| +++ b/gravityforms-html5-validation.php | |
| @@ -314,7 +314,7 @@ public function gform_field_content( $field_content, $field, $force_frontend_lab | |
| break; // End text, textarea, phone, website, number, select, multiselect, price, username, file, fileupload, post_title, post_content, post_excerpt, post_tags, post_image, post_custom field. | |
| case 'checkbox': | |
| - | |
| + case 'consent': |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/gravityforms-html5-validation.php b/gravityforms-html5-validation.php | |
| index 5e2c9e0..116714c 100644 | |
| --- a/gravityforms-html5-validation.php | |
| +++ b/gravityforms-html5-validation.php | |
| @@ -599,6 +599,12 @@ public function gform_field_content( $field_content, $field, $force_frontend_lab | |
| break; | |
| } | |
| + if ( $field->validation_message ) { | |
| + if ( $element = (( $result = $xpath->query( "//input" )) ? $result->item( 0 ) : null ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/includes/api/api-template.php b/includes/api/api-template.php | |
| index bfd0fd2..259885c 100644 | |
| --- a/includes/api/api-template.php | |
| +++ b/includes/api/api-template.php | |
| @@ -162,7 +162,7 @@ function get_field_object( $selector, $post_id = false, $format_value = true, $l | |
| * @param $strict (boolean) if true, return a field only when a field key is found. | |
| * @return $field (array) | |
| */ | |
| -function acf_maybe_get_field( $selector, $post_id = false, $strict = true ) { | |
| +function acf_maybe_get_field( $selector, $post_id = false, $strict = false ) { |
NewerOlder