(Grav GitSync) Automatic Commit from dan

This commit is contained in:
dan 2022-05-30 09:02:22 +12:00 committed by GitSync
parent 55e216c193
commit 7e08fc4951
4 changed files with 45 additions and 2 deletions

View File

@ -0,0 +1,29 @@
---
title: 'BorgBackup tutorial/guide is ready 🍻 and we have added a new status page for our services'
author: 'Daniel Sundermann'
published: true
date: '29-05-2022 20:59'
taxonomy:
category:
- news
tag:
- tutorials
- status
- monitoring
aura:
author: dan
---
Hey
After a little break, we are now continuing to work on our wiki and finished our BorgBackup guide.
We have also added a new status page for our services via Uptime Kuma.
https://wiki.techsaviours.org/en/server/services/borg
https://status.techsaviours.org/status/org
German guide will follow as usual.
Have a good week
Dan

View File

@ -1,3 +1,15 @@
# v6.0.3
## 05/05/2022
1. [](#bugfix)
* Regression: Fixed broken `addForm()` method
# v6.0.2
## 05/02/2022
1. [](#bugfix)
* Fixed `forms({ route: '/forms/_myform' })` not finding form from non-routable pages (second try)
# v6.0.1
## 04/25/2022

View File

@ -1,7 +1,7 @@
name: Form
slug: form
type: plugin
version: 6.0.1
version: 6.0.3
description: Enables the forms handling
icon: check-square
author:

View File

@ -783,7 +783,7 @@ class FormPlugin extends Plugin
$route = $page->home() ? '/' : $page->route();
if (!isset($this->forms[$route][$name])) {
$form['_page_routable'] = $page->routable();
$form['_page_routable'] = !$page->isModule();
$this->forms[$route][$name] = $form;
$this->recache_forms = true;
@ -806,6 +806,8 @@ class FormPlugin extends Plugin
$name = $form->getName();
if (!isset($this->forms[$route][$name])) {
$form['_page_routable'] = true;
$this->forms[$route][$name] = $form;
$this->recache_forms = true;
}