Kaynağa Gözat

Staging/1.5.10 (#2455)

* Adjust readme to the current version.
* Update CHANGELOG.md
* Fix database name  in success message
* Relase 1.5.10

Co-authored-by: Raphael Schneeberger <rs@scit.ch>
Jaap Marcus 4 yıl önce
ebeveyn
işleme
e0ab2dcfa9

+ 3 - 3
CHANGELOG.md

@@ -5,10 +5,10 @@ All notable changes to this project will be documented in this file.
 
 ### Bugfixes
 - Fixed an issue where webmail client options were not displayed in the Web UI (#2445)
-- Fixed an issue where MariaDB would fail to start (#2446)
+- Fixed an issue where users where not able to create an backup. (#2448 / #2449)
 - Fixed an issue where saving server settings could fail due to an incorrect PHP version check on mod-php servers (#2451)
-- Fixed an issue where MariaDB installations were broken when performing a clean install of HestiaCP v1.5.9 (#2452)
-- Fixed recently discovered XSS vulnerabilities (#2453)
+- Fixed an issue where MariaDB installations were broken when performing a clean install of HestiaCP v1.5.9 (#2452 | 2446)
+- Fixed recently discovered XSS vulnerabilities (#2453) [CVE-2022-0838](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0838)
 
 ## [1.5.9] - Service release
 

+ 1 - 1
README.md

@@ -2,7 +2,7 @@
 
 [Hestia Control Panel](https://www.hestiacp.com/)
 ==================================================
-**Latest stable release:** Version 1.5.9 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md) | [![Build Status](https://drone.hestiacp.com/api/badges/hestiacp/hestiacp/status.svg?ref=refs/heads/main)](https://drone.hestiacp.com/hestiacp/hestiacp) <br>
+**Latest stable release:** Version 1.5.10 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md) | [![Build Status](https://drone.hestiacp.com/api/badges/hestiacp/hestiacp/status.svg?ref=refs/heads/main)](https://drone.hestiacp.com/hestiacp/hestiacp) <br>
 
 **Web:** [www.hestiacp.com](https://www.hestiacp.com/)<br>
 **Documentation:** [docs.hestiacp.com](https://docs.hestiacp.com/)<br>

+ 1 - 1
install/hst-install-debian.sh

@@ -31,7 +31,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
 VERBOSE='no'
 
 # Define software versions
-HESTIA_INSTALL_VER='1.5.10~alpha'
+HESTIA_INSTALL_VER='1.5.10'
 # Dependencies
 pma_v='5.1.3'
 rc_v="1.5.2"

+ 1 - 1
install/hst-install-ubuntu.sh

@@ -31,7 +31,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
 VERBOSE='no'
 
 # Define software versions
-HESTIA_INSTALL_VER='1.5.10~alpha'
+HESTIA_INSTALL_VER='1.5.10'
 # Dependencies
 pma_v='5.1.3'
 rc_v="1.5.2"

+ 1 - 1
src/deb/hestia/control

@@ -1,7 +1,7 @@
 Source: hestia
 Package: hestia
 Priority: optional
-Version: 1.5.10~alpha
+Version: 1.5.10
 Section: admin
 Maintainer: HestiaCP <info@hestiacp.com>
 Homepage: https://www.hestiacp.com

+ 1 - 1
web/add/db/index.php

@@ -121,7 +121,7 @@ if (!empty($_POST['ok'])) {
 
     // Flush field values on success
     if (empty($_SESSION['error_msg'])) {
-        $_SESSION['ok_msg'] = sprintf(_('DATABASE_CREATED_OK'), htmlentities($user)."_".htmlentities($_POST['v_database']), htmlentities($user)."_".htmlentities($_POST['v_database']));
+        $_SESSION['ok_msg'] = sprintf(_('DATABASE_CREATED_OK'), htmlentities($user_plain)."_".htmlentities($_POST['v_database']), htmlentities($user_plain)."_".htmlentities($_POST['v_database']));
         $_SESSION['ok_msg'] .= " / <a href=".$db_admin_link." target='_blank'>" . sprintf(_('open %s'), $db_admin) . "</a>";
         unset($v_database);
         unset($v_dbuser);