You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-08-07 17:42:53 +03:00
run: composer format
This commit is contained in:
@@ -1542,7 +1542,6 @@ function db_connect() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return $link;
|
return $link;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -217,7 +217,6 @@ class MailboxHandler extends PFAHandler {
|
|||||||
|
|
||||||
|
|
||||||
protected function beforestore() {
|
protected function beforestore() {
|
||||||
|
|
||||||
if (isset($this->values['quota']) && $this->values['quota'] != -1) {
|
if (isset($this->values['quota']) && $this->values['quota'] != -1) {
|
||||||
$multiplier = Config::read_string('quota_multiplier');
|
$multiplier = Config::read_string('quota_multiplier');
|
||||||
if ($multiplier == 0) { // or empty string, or null, or false...
|
if ($multiplier == 0) { // or empty string, or null, or false...
|
||||||
|
@@ -189,8 +189,7 @@ $error_text = null;
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$link = db_connect();
|
$link = db_connect();
|
||||||
}
|
} catch (Exception $e) {
|
||||||
catch(Exception $e) {
|
|
||||||
$error_text = $e->getMessage();
|
$error_text = $e->getMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -39,7 +39,6 @@ if ($context === 'admin' && !Config::read('forgotten_admin_password_reset') || $
|
|||||||
}
|
}
|
||||||
|
|
||||||
function sendCodebyEmail($to, $username, $code) {
|
function sendCodebyEmail($to, $username, $code) {
|
||||||
|
|
||||||
$https = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 'https' : 'http';
|
$https = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 'https' : 'http';
|
||||||
|
|
||||||
$_SERVER['REQUEST_SCHEME'] = isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : $https;
|
$_SERVER['REQUEST_SCHEME'] = isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : $https;
|
||||||
|
@@ -85,7 +85,6 @@ try {
|
|||||||
echo "failed to connect to database\n";
|
echo "failed to connect to database\n";
|
||||||
echo $e->getMessage();
|
echo $e->getMessage();
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once(dirname(__FILE__) . '/../public/upgrade.php');
|
require_once(dirname(__FILE__) . '/../public/upgrade.php');
|
||||||
|
Reference in New Issue
Block a user