Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions includes/fs-essential-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
* @since 1.1.5
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}

if ( ! function_exists( 'fs_normalize_path' ) ) {
if ( function_exists( 'wp_normalize_path' ) ) {
Expand Down
3 changes: 3 additions & 0 deletions includes/managers/class-fs-debug-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
* @package Freemius
* @since 2.6.2
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}

class FS_DebugManager {

Expand Down
4 changes: 3 additions & 1 deletion templates/checkout.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
* @since 2.9.0
*/

if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @var array $VARS
* @var Freemius $fs
Expand Down