Skip to content

Commit 871dab5

Browse files
committed
Merge branch 'staging/release/1.4.3' into main
2 parents 3c473d1 + 71b67fa commit 871dab5

File tree

45 files changed

+623
-587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+623
-587
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## [Development]
4+
## [1.4.2] - Service release
55

66
### Features
77

@@ -12,7 +12,7 @@ All notable changes to this project will be documented in this file.
1212
### Bugfixes
1313

1414
- Improve the calculated disk size of a new backup estimated by excluding the exclude folders, mail accounts and database in backups (#1616) @Myself5
15-
- Improve v-update-firewall / v-stop-firewarewall to make it self healing (#1892) @myrevery
15+
- Improve v-update-firewall / v-stop-firewall to make it self healing (#1892) @myrevery
1616
- Update phpMyAdmin version to 1.5.1 (See https://www.phpmyadmin.net/news/2021/6/4/phpmyadmin-511-released/)
1717
- Fixed a bug after rebuilding mail with Exim4 and suspended domains (#1886)
1818
- Fixed "Allowed IP addresses for API" field with strange behaviour #1866

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[Hestia Control Panel](https://www.hestiacp.com/)
44
==================================================
5-
**Latest stable release:** Version 1.4.2 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md)<br>
5+
**Latest stable release:** Version 1.4.3 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md)<br>
66

77
**Web:** [www.hestiacp.com](https://www.hestiacp.com/)<br>
88
**Documentation:** [docs.hestiacp.com](https://docs.hestiacp.com/)<br>

bin/v-add-user-composer

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# options: USER
44
# labels: hestia
55
#
6-
# example: v-add-user-composer user
6+
# example: v-add-user-composer user [version]
77
#
88
# The function adds support for composer (php dependency manager)
99
# Homepage: https://getcomposer.org/
@@ -34,7 +34,7 @@ source $HESTIA/conf/hestia.conf
3434

3535
check_args '1' "$#" 'USER [VERSION]'
3636
is_format_valid 'user'
37-
is_number_format_valid 'version' "$version"
37+
is_number_format_valid "$version" "version"
3838
is_object_valid 'user' 'USER' "$user"
3939
is_object_unsuspended 'user' 'USER' "$user"
4040

func/domain.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -927,14 +927,14 @@ is_base_domain_owner(){
927927
test=$(is_domain_new "" $basedomain)
928928
if [ $? -ne 0 ]; then
929929
echo "Error: $basedomain belongs to a different user";
930-
exit 1;
930+
exit 4;
931931
fi
932932
fi
933933
else
934934
test=$(is_domain_new "" $basedomain);
935935
if [ $? -ne 0 ]; then
936936
echo "Error: $basedomain belongs to a different user";
937-
exit 1;
937+
exit 4;
938938
fi
939939
fi
940940
fi

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
2323
VERBOSE='no'
2424

2525
# Define software versions
26-
HESTIA_INSTALL_VER='1.4.3~alpha'
26+
HESTIA_INSTALL_VER='1.4.3'
2727
pma_v='5.1.1'
2828
rc_v="1.4.11"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
2323
VERBOSE='no'
2424

2525
# Define software versions
26-
HESTIA_INSTALL_VER='1.4.3~alpha'
26+
HESTIA_INSTALL_VER='1.4.3'
2727
pma_v='5.1.1'
2828
rc_v="1.4.11"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")

src/deb/hestia/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Source: hestia
22
Package: hestia
33
Priority: optional
4-
Version: 1.4.3~alpha
4+
Version: 1.4.3
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com

web/edit/package/index.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105

106106
// Check empty fields
107107
if (empty($_POST['v_package'])) $errors[] = _('package');
108-
if (empty($_POST['v_package_new'])) $errors[] = _('package_new');
109108
if (empty($_POST['v_web_template'])) $errors[] = _('web template');
110109
if (!empty($_SESSION['WEB_BACKEND'])) {
111110
if (empty($_POST['v_backend_template'])) $errors[] = _('backend template');
-98 Bytes
Binary file not shown.
-90 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)