Skip to content

Commit

Permalink
Call to undefined function Lumierelum_check_display() in wp-content/p…
Browse files Browse the repository at this point in the history
…lugins/lumiere-movies/class/class-updates.php:17
  • Loading branch information
jcvignoli committed Dec 21, 2024
1 parent 2d25b43 commit afa0081
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +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
* [technical] Increased security: added $_GET validation for popups (new Validate_Get class in tools)
Expand Down
3 changes: 3 additions & 0 deletions dist/class/class-updates.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
namespace Lumiere;

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

use FilesystemIterator;
Expand Down
1 change: 1 addition & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +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
* [technical] Increased security: added $_GET validation for popups (new Validate_Get class in tools)
Expand Down
3 changes: 3 additions & 0 deletions src/class/class-updates.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
namespace Lumiere;

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

use FilesystemIterator;
Expand Down

0 comments on commit afa0081

Please sign in to comment.