File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ All notable changes to this project will be documented in this file.
6666- Added mpm_itk for Deb10 single php installation only.
6767- Hardening nginx configuration, drop TLSv1.1 support.
6868- Fixed excluding folders named "logs" from restore backup, thanks to @davidgolsen .
69+ - Fixed typo in delete psql database part, thanks to @joshbmarshall .
6970
7071## [ 1.0.6] - 2019-09-24 - Hotfix
7172### Bugfixes
Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ delete_pgsql_database() {
322322 psql_connect $HOST
323323
324324 query=" REVOKE ALL PRIVILEGES ON DATABASE $database FROM $DBUSER "
325- psql_qyery " $query " > /dev/null
325+ psql_query " $query " > /dev/null
326326
327327 query=" DROP DATABASE $database "
328328 psql_query " $query " > /dev/null
You can’t perform that action at this time.
0 commit comments