Skip to content

Commit

Permalink
Release 2.33.1 (#2246)
Browse files Browse the repository at this point in the history
This update fixes an issue with entry notes being displayed.

#### 🐛 Fixed
* Entry notes being displayed.


💾 [Build
file](https://www.dropbox.com/scl/fi/e1nufgxdgi3m9dmdfezua/gravityview-2.33.1-d00ac1269.zip?rlkey=poxjxe8z6htcyy7289y3j1qys&dl=1)
(d00ac12).
  • Loading branch information
zackkatz authored Dec 30, 2024
2 parents 290e320 + 3c73410 commit fa7e685
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gravityview.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: GravityView
* Plugin URI: https://www.gravitykit.com
* Description: The best, easiest way to display Gravity Forms entries on your website.
* Version: 2.33
* Version: 2.33.1
* Requires PHP: 7.4.0
* Author: GravityKit
* Author URI: https://www.gravitykit.com
Expand Down Expand Up @@ -32,7 +32,7 @@
/**
* The plugin version.
*/
define( 'GV_PLUGIN_VERSION', '2.33' );
define( 'GV_PLUGIN_VERSION', '2.33.1' );

/**
* Full path to the GravityView file
Expand Down
10 changes: 10 additions & 0 deletions includes/class-admin-welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,16 @@ public function changelog_screen() {
* - If 4.28, include to 4.26.
*/
?>
<h3>2.33.1 on December 30, 2024</h3>

<p>This update removes debugging code from the Entry Notes field.</p>

<h4>🐛 Fixed</h4>

<ul>
<li>Debugging code being shown in the Entry Notes field output.</li>
</ul>

<h3>2.33 on December 19, 2024</h3>

<p>This release introduces support for the Source ID meta (Gravity Forms 2.9+), adds a new User Activation field to the View editor, and includes various fixes and enhancements.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ public static function display_note( $note, $show_delete = false, $context = nul
'{row_class}' => 'gv-note',
'{note_detail}' => $note_detail_html,
);
var_dump($note_row);exit;

// Strip extra whitespace in template
$output = gravityview_strip_whitespace( $note_row );

Expand Down
7 changes: 7 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ Beautifully display your Gravity Forms entries. Learn more on [gravitykit.com](h

== Changelog ==

= 2.33.1 on December 30, 2024 =

This update removes debugging code from the Entry Notes field.

#### 🐛 Fixed
* Debugging code being shown in the Entry Notes field output.

= 2.33 on December 19, 2024 =

This release introduces support for the Source ID meta (Gravity Forms 2.9+), adds a new User Activation field to the View editor, and includes various fixes and enhancements.
Expand Down

0 comments on commit fa7e685

Please sign in to comment.