Skip to content

Commit

Permalink
Bumped version to 3.0.0-rc3.
Browse files Browse the repository at this point in the history
  • Loading branch information
hansfn committed Jun 22, 2023
1 parent 95726a8 commit d0e5071
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
@@ -1,8 +1,8 @@

# PivotX 3.0.0 Release Candidate 2
# PivotX 3.0.0 Release Candidate 3

This version of PivotX is compatible with PHP 7 and 8.
The minimum version is raised to PHP 7.3.
This version of PivotX is compatible with PHP 8.2.
The minimum version is raised to PHP 7.4.

If you're reading this, you've downloaded and extracted a build of PivotX. Look
here for instructions on how to install:
Expand Down
4 changes: 2 additions & 2 deletions pivotx/lib.php
Expand Up @@ -20,10 +20,10 @@

DEFINE('INPIVOTX', TRUE);

$version = "3.0.0-rc2";
$version = "3.0.0-rc3";
$codename = "Back from the dead";

$minrequiredphp = "7.3.0";
$minrequiredphp = "7.4.0";
$minrequiredmysql = "4.1";
$dbversion = "11"; // Used to track if it's necessary to upgrade the DB.

Expand Down
2 changes: 1 addition & 1 deletion pivotx/modules/module_image.php
Expand Up @@ -181,7 +181,7 @@ function create_thumbnail() {
}

class Image {
var $name, $w, $h, $x, $y, $type;
var $name, $w, $h, $x, $y, $type, $link;

function __construct($n, $w, $h, $x, $y, $type = '', $link = '') {
$this->name = $n;
Expand Down

0 comments on commit d0e5071

Please sign in to comment.