diff --git a/README.md b/README.md
index 7a9e303..b4ac041 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
-**Shipped version:** 29.0.0~ynh1
+**Shipped version:** 29.0.1~ynh1
**Demo:**
diff --git a/README_es.md b/README_es.md
index 5d0f6b0..0af9c6b 100644
--- a/README_es.md
+++ b/README_es.md
@@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
-**Versión actual:** 29.0.0~ynh1
+**Versión actual:** 29.0.1~ynh1
**Demo:**
diff --git a/README_eu.md b/README_eu.md
index 1802216..6b5a084 100644
--- a/README_eu.md
+++ b/README_eu.md
@@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
-**Paketatutako bertsioa:** 29.0.0~ynh1
+**Paketatutako bertsioa:** 29.0.1~ynh1
**Demoa:**
diff --git a/README_fr.md b/README_fr.md
index a6a50e4..5c8079f 100644
--- a/README_fr.md
+++ b/README_fr.md
@@ -29,7 +29,7 @@ En plus des fonctionnalités principales de Nextcloud, les fonctionnalités suiv
* Utilise l'adresse `/.well-known` pour la synchronisation CalDAV et CardDAV du domaine si aucun autre service ne l'utilise déjà - par exemple, Baïkal
-**Version incluse :** 29.0.0~ynh1
+**Version incluse :** 29.0.1~ynh1
**Démo :**
diff --git a/README_gl.md b/README_gl.md
index dd5d840..0f79413 100644
--- a/README_gl.md
+++ b/README_gl.md
@@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
-**Versión proporcionada:** 29.0.0~ynh1
+**Versión proporcionada:** 29.0.1~ynh1
**Demo:**
diff --git a/README_zh_Hans.md b/README_zh_Hans.md
index 915e5c3..adc61aa 100644
--- a/README_zh_Hans.md
+++ b/README_zh_Hans.md
@@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
-**分发版本:** 29.0.0~ynh1
+**分发版本:** 29.0.1~ynh1
**演示:**
diff --git a/manifest.toml b/manifest.toml
index 173b50f..112dc2b 100644
--- a/manifest.toml
+++ b/manifest.toml
@@ -5,7 +5,7 @@ name = "Nextcloud"
description.en = "Online storage, file sharing platform and various other applications"
description.fr = "Stockage en ligne, plateforme de partage de fichiers et diverses autres applications"
-version = "29.0.0~ynh1"
+version = "29.0.1~ynh1"
maintainers = ["kay0u"]
@@ -66,8 +66,8 @@ ram.runtime = "512M"
[resources.sources]
[resources.sources.main]
- url = 'https://download.nextcloud.com/server/releases/nextcloud-29.0.0.tar.bz2'
- sha256 = 'e9b53f6432b6f664487d3869645fa121a64cf0ed6aee83aa560903daf86b52bd'
+ url = 'https://download.nextcloud.com/server/releases/nextcloud-29.0.1.tar.bz2'
+ sha256 = '759546daecf79ca787ed6705503693c6db553aabf1d7ae4dfa779c7309b2ada9'
[resources.sources.28]
url = 'https://download.nextcloud.com/server/releases/nextcloud-28.0.0.tar.bz2'
diff --git a/scripts/install b/scripts/install
index 8356b69..563ad82 100755
--- a/scripts/install
+++ b/scripts/install
@@ -5,7 +5,7 @@ source /usr/share/yunohost/helpers
phpflags="--define apc.enable_cli=1"
-ynh_app_setting_set --app=$app --key=phpflags --value=$phpflags
+ynh_app_setting_set --app=$app --key=phpflags --value="$phpflags"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
diff --git a/scripts/upgrade b/scripts/upgrade
index 360776e..52aa830 100755
--- a/scripts/upgrade
+++ b/scripts/upgrade
@@ -16,7 +16,7 @@ ynh_app_setting_delete --app=$app --key=backup_core_only
# If phpflags doesn't exist, create it
if [ -z "${phpflags:-}" ]; then
phpflags="--define apc.enable_cli=1"
- ynh_app_setting_set --app=$app --key=phpflags --value=$phpflags
+ ynh_app_setting_set --app=$app --key=phpflags --value="$phpflags"
fi
if ynh_compare_current_package_version --comparison lt --version 22.2~ynh1