Replaced session variable with local variable instead, on previous Upgrade Schema fix.
This commit is contained in:
parent
f3b56626e9
commit
c5f4d7d2a0
|
|
@ -75,10 +75,10 @@
|
||||||
unset($apps);
|
unset($apps);
|
||||||
|
|
||||||
//upgrade the domains
|
//upgrade the domains
|
||||||
$_SESSION['domain_language_code'] = $_SESSION['domain']['language']['code'];
|
$domain_language_code = $_SESSION['domain']['language']['code'];
|
||||||
require_once "core/upgrade/upgrade_domains.php";
|
require_once "core/upgrade/upgrade_domains.php";
|
||||||
$_SESSION['domain']['language']['code'] = $_SESSION['domain_language_code'];
|
$_SESSION['domain']['language']['code'] = $domain_language_code;
|
||||||
unset($_SESSION['domain_language_code']);
|
unset($domain_language_code);
|
||||||
|
|
||||||
if ($display_results && $display_type == "html") {
|
if ($display_results && $display_type == "html") {
|
||||||
echo "<br />\n";
|
echo "<br />\n";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue