-
Notifications
You must be signed in to change notification settings - Fork 48
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 #948 from graphpaperpress/cm/wpsessionfix
adding 7.4 fixes
- Loading branch information
Showing
3 changed files
with
13 additions
and
8 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 |
---|---|---|
|
@@ -3,14 +3,13 @@ | |
* Plugin Name: Sell Media | ||
* Plugin URI: http://graphpaperpress.com/plugins/sell-media/ | ||
* Description: A plugin for selling photos, prints and other downloads. | ||
* Version: 2.5.8.1 | ||
* Version: 2.5.8.2 | ||
* Author: Graph Paper Press | ||
* Author URI: http://graphpaperpress.com | ||
* Author Email: [email protected] | ||
* Text Domain: sell_media | ||
* Domain Path: languages | ||
* License: GPL2 | ||
* Requires PHP: 8.0 | ||
* | ||
* Copyright 2023 GRAPH PAPER PRESS (email: [email protected]) | ||
* This program is free software; you can redistribute it and/or modify | ||
|
@@ -25,7 +24,7 @@ | |
* @package SellMedia | ||
* @category Core | ||
* @author Thad Allender | ||
* @version 2.5.8.1 | ||
* @version 2.5.8.2 | ||
*/ | ||
|
||
// Exit if accessed directly. | ||
|
@@ -156,7 +155,7 @@ public static function instance() { | |
*/ | ||
public function __clone() { | ||
// Cloning instances of the class is forbidden. | ||
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.1' ); | ||
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.2' ); | ||
} | ||
|
||
/** | ||
|
@@ -168,7 +167,7 @@ public function __clone() { | |
*/ | ||
public function __wakeup() { | ||
// Unserializing instances of the class is forbidden. | ||
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.1' ); | ||
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.2' ); | ||
} | ||
|
||
/** | ||
|
@@ -182,7 +181,7 @@ private function constants() { | |
|
||
// Plugin version. | ||
if ( ! defined( 'SELL_MEDIA_VERSION' ) ) { | ||
define( 'SELL_MEDIA_VERSION', '2.5.8.1' ); | ||
define( 'SELL_MEDIA_VERSION', '2.5.8.2' ); | ||
} | ||
|
||
// Plugin Folder Path. | ||
|