Skip to content

Commit

Permalink
version 4.2.3.1 => fix fatal error on update
Browse files Browse the repository at this point in the history
  • Loading branch information
jcvignoli committed Dec 21, 2024
1 parent afa0081 commit fb14119
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**Changelog**

v.4.2.4
* [bug] Uncaught Error: Call to undefined function Lumiere\lum_check_display() in wp-content/plugins/lumiere-movies/class/class-updates.php:17 (added functions.php inclusing in Updates class)
v.4.2.3.1
* [bug] WordPress Update process was broken (Uncaught Error: Call to undefined function Lumiere\lum_check_display() in wp-content/plugins/lumiere-movies/class/class-updates.php:17 => added functions.php inclusing in Updates class)

v.4.2.3
* [technical] Increased security: added $_GET validation for popups (new Validate_Get class in tools)
Expand Down
2 changes: 1 addition & 1 deletion dist/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: psykonevro
Tags: cinema, film, imdb, movie, actor
Requires at least: 5.6
Tested up to: 6.7
Stable tag: 4.2.4
Stable tag: 4.2.3.1
Requires PHP: 8.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
Expand Down
2 changes: 1 addition & 1 deletion dist/class/class-updates.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

// If this file is called directly, abort.
if ( ! function_exists( 'lum_check_display' ) ) {
require_once plugin_dir_path( dirname( __DIR__ ) ) . 'functions.php';
require_once plugin_dir_path( __DIR__ ) . 'functions.php';
}
lum_check_display();

Expand Down
2 changes: 1 addition & 1 deletion dist/lumiere-movies.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Lumière Movies
* Plugin URI: https://www.wordpress.org/plugins/lumiere-movies/
* Description: Add informative popups about movies with information extracted from the IMDb. Display data related to movies in a widget and inside your post.
* Version: 4.2.4
* Version: 4.2.3.1
* Requires at least: 5.6
* Requires PHP: 8.0
* Author: psykonevro
Expand Down
4 changes: 2 additions & 2 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**Changelog**

v.4.2.4
* [bug] Uncaught Error: Call to undefined function Lumiere\lum_check_display() in wp-content/plugins/lumiere-movies/class/class-updates.php:17 (added functions.php inclusing in Updates class)
v.4.2.3.1
* [bug] WordPress Update process was broken (Uncaught Error: Call to undefined function Lumiere\lum_check_display() in wp-content/plugins/lumiere-movies/class/class-updates.php:17 => added functions.php inclusing in Updates class)

v.4.2.3
* [technical] Increased security: added $_GET validation for popups (new Validate_Get class in tools)
Expand Down
2 changes: 1 addition & 1 deletion src/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: psykonevro
Tags: cinema, film, imdb, movie, actor
Requires at least: 5.6
Tested up to: 6.7
Stable tag: 4.2.4
Stable tag: 4.2.3.1
Requires PHP: 8.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
Expand Down
2 changes: 1 addition & 1 deletion src/class/class-updates.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

// If this file is called directly, abort.
if ( ! function_exists( 'lum_check_display' ) ) {
require_once plugin_dir_path( dirname( __DIR__ ) ) . 'functions.php';
require_once plugin_dir_path( __DIR__ ) . 'functions.php';
}
lum_check_display();

Expand Down
2 changes: 1 addition & 1 deletion src/lumiere-movies.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Lumière Movies
* Plugin URI: https://www.wordpress.org/plugins/lumiere-movies/
* Description: Add informative popups about movies with information extracted from the IMDb. Display data related to movies in a widget and inside your post.
* Version: 4.2.4
* Version: 4.2.3.1
* Requires at least: 5.6
* Requires PHP: 8.0
* Author: psykonevro
Expand Down

0 comments on commit fb14119

Please sign in to comment.