Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:add array declarations to installer #1604

Merged
Merged
Changes from 1 commit
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
7 changes: 5 additions & 2 deletions htdocs/install/class/IcmsInstallWizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

class IcmsInstallWizard {
var $pages = array();
var $pagesNames = array();
fiammybe marked this conversation as resolved.
Show resolved Hide resolved
fiammybe marked this conversation as resolved.
Show resolved Hide resolved
var $pagesTitles = array();
fiammybe marked this conversation as resolved.
Show resolved Hide resolved
fiammybe marked this conversation as resolved.
Show resolved Hide resolved
var $titles = array();
var $currentPage = 0;
var $currentPageName;
fiammybe marked this conversation as resolved.
Show resolved Hide resolved
fiammybe marked this conversation as resolved.
Show resolved Hide resolved
var $lastpage;
var $secondlastpage;
var $language = 'english';
Expand All @@ -18,7 +21,7 @@ function xoInit() {
$_SERVER['REQUEST_URI'] = htmlentities($_SERVER['PHP_SELF']);
}

if (PHP_VERSION_ID < 70000) {
if (PHP_VERSION_ID < 74000) {
$this->no_php5 = true;
}
/*
Expand Down Expand Up @@ -195,4 +198,4 @@ function redirectToPage($page, $status = 303, $message = 'See other') {
// header( "Status: $status $message" );
header("Location: $location");
}
}
}