Skip to content

Commit

Permalink
Merge pull request #2415 from kprajapatii/master
Browse files Browse the repository at this point in the history
2.3.18
  • Loading branch information
kprajapatii committed Aug 10, 2023
2 parents 12221f9 + d165ca5 commit 61a6940
Show file tree
Hide file tree
Showing 9 changed files with 152 additions and 149 deletions.
6 changes: 3 additions & 3 deletions geodirectory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
* Plugin Name: GeoDirectory
* Plugin URI: https://wpgeodirectory.com/
* Description: GeoDirectory - Business Directory Plugin for WordPress.
* Version: 2.3.17
* Version: 2.3.18
* Author: AyeCode - WordPress Business Directory Plugins
* Author URI: https://wpgeodirectory.com
* Text Domain: geodirectory
* Domain Path: /languages
* Requires at least: 4.5
* Tested up to: 6.2
* Tested up to: 6.3
*/

if ( ! class_exists( 'GeoDirectory' ) ) :
Expand All @@ -34,7 +34,7 @@ final class GeoDirectory {
*
* @var string
*/
public $version = '2.3.17';
public $version = '2.3.18';

/**
* GeoDirectory instance.
Expand Down
2 changes: 1 addition & 1 deletion includes/template-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ function geodir_template_redirect() {
continue;
}

$args[ $key ] = geodir_clean( $value );
$args[ $key ] = rawurlencode( geodir_clean( $value ) );
}

if ( ! empty( $args ) ) {
Expand Down
2 changes: 1 addition & 1 deletion includes/widgets/class-geodir-widget-post-features.php
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ public function get_parsed_values( $html, $field ) {
$dom = new DOMDocument();

// Load the HTML into the DOMDocument
@$dom->loadHTML( $html );
/** @scrutinizer ignore-unhandled */ @$dom->loadHTML( $html );

// Create a new DOMXPath instance
$xpath = new DOMXPath( $dom );
Expand Down
Binary file modified languages/geodirectory-en_US.mo
Binary file not shown.
Loading

0 comments on commit 61a6940

Please sign in to comment.