Skip to content

Commit 787a5d0

Browse files
committed
Merge branch 'staging/1.5.13' into release
2 parents 86cd373 + a26e819 commit 787a5d0

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

CHANGELOG.md

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

4+
5+
## [1.5.13] - Service release
6+
7+
### Bugfixes
8+
9+
- Fixed an issue in add / change dns record via GUI. (#2557)
10+
411
## [1.5.12] - Service release
512

613
### Bugfixes
714

815
- Fixed vulnerability with Sed [CVE-2022-XXXX](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-XXXX)
916
- Remove localhost exception for invalidating sessions [SSD disclosure](https://ssd-disclosure.com/ssd-advisory-vestacp-multiple-vulnerabilities/)
10-
-
1117

1218
## [1.5.11] - Service release
1319

func/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1242,7 +1242,7 @@ format_aliases() {
12421242
}
12431243

12441244
is_restart_format_valid() {
1245-
if [ "$1" != 'yes' ] && [ "$1" != 'no' ] && [ "$1" != 'ssl' ] && [ "$1" != 'reload' ]; then
1245+
if [ "$1" != 'yes' ] && [ "$1" != 'no' ] && [ "$1" != 'ssl' ] && [ "$1" != 'reload' ] && [ "$1" != 'updatessl' ]; then
12461246
check_result "$E_INVALID" "invalid $2 format :: $1"
12471247
fi
12481248
}

install/hst-install-debian.sh

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

3333
# Define software versions
34-
HESTIA_INSTALL_VER='1.5.12'
34+
HESTIA_INSTALL_VER='1.5.13'
3535
# Dependencies
3636
pma_v='5.1.3'
3737
rc_v="1.5.2"

install/hst-install-ubuntu.sh

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

3333
# Define software versions
34-
HESTIA_INSTALL_VER='1.5.12'
34+
HESTIA_INSTALL_VER='1.5.13'
3535
# Dependencies
3636
pma_v='5.1.3'
3737
rc_v="1.5.2"

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.5.12
4+
Version: 1.5.13
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com

web/add/dns/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
$v_ttl = escapeshellarg($_POST['v_ttl']);
141141
// Add dns record
142142
if (empty($_SESSION['error_msg'])) {
143-
exec(HESTIA_CMD."v-add-dns-record ".$user." ".$v_domain." ".$v_rec." ".$v_type." ".$v_val." ".$v_priority." '' false ".$v_ttl, $output, $return_var);
143+
exec(HESTIA_CMD."v-add-dns-record ".$user." ".$v_domain." ".$v_rec." ".$v_type." ".$v_val." ".$v_priority." '' no ".$v_ttl, $output, $return_var);
144144
check_return_code($return_var, $output);
145145
unset($output);
146146
}

web/edit/dns/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
$v_val = escapeshellarg($_POST['v_val']);
163163
$v_priority = escapeshellarg($_POST['v_priority']);
164164
$v_ttl = escapeshellarg($_POST['v_ttl']);
165-
exec(HESTIA_CMD."v-change-dns-record ".$user." ".$v_domain." ".$v_record_id." ".$v_rec." ".$v_type." ".$v_val." ".$v_priority." false ".$v_ttl, $output, $return_var);
165+
exec(HESTIA_CMD."v-change-dns-record ".$user." ".$v_domain." ".$v_record_id." ".$v_rec." ".$v_type." ".$v_val." ".$v_priority." no ".$v_ttl, $output, $return_var);
166166
check_return_code($return_var, $output);
167167
$v_rec = $_POST['v_rec'];
168168
$v_type = $_POST['v_type'];

0 commit comments

Comments
 (0)