-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #718 from lucatume/v4-fix-716
fix #716
- Loading branch information
Showing
28 changed files
with
591 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/includes/sqlite-database-integration/load.php b/includes/sqlite-database-integration/load.php | ||
index 3af80903..ddc5a9b6 100644 | ||
--- a/includes/sqlite-database-integration/load.php | ||
+++ b/includes/sqlite-database-integration/load.php | ||
@@ -12,7 +12,9 @@ | ||
* @package wp-sqlite-integration | ||
*/ | ||
|
||
-define( 'SQLITE_MAIN_FILE', __FILE__ ); | ||
+if (!defined('SQLITE_MAIN_FILE')) { | ||
+ define('SQLITE_MAIN_FILE', __FILE__); | ||
+} | ||
|
||
require_once __DIR__ . '/admin-page.php'; | ||
require_once __DIR__ . '/activate.php'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.