Fatal PHP error in version 1.2.2
-
Version 1.2.2 introduces some changes that cause fatal PHP errors due to files missing from the plugin.
The main plugin file
canva.php
now has two newrequire_once()
calls that reference files that do not exist:/inc/canvaDatabase.php
and/inc/canvaDatabaseTableDisplay.php
@@ -40,4 +51,8 @@ if ( ! defined( 'CANVA_BASENAME' ) ) { } // Load Canva -require_once( CANVA_PATH . 'inc/media.php' ); \ No newline at end of file +require_once CANVA_PATH . '/inc/canvaDatabase.php'; + +require_once CANVA_PATH . '/inc/canvaDatabaseTableDisplay.php'; + +require_once( CANVA_PATH . 'inc/media.php' );
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Fatal PHP error in version 1.2.2’ is closed to new replies.