From 241645a17a5f52984e73af608f2136d3d6740b44 Mon Sep 17 00:00:00 2001 From: Jan Kristinus Date: Thu, 22 Aug 2024 17:46:30 +0200 Subject: [PATCH] Beim Install wird nach Passwort nun mit passendem Feld auch erstellt (#491) closes #471 --- install.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.php b/install.php index 1e28392..1adeddb 100644 --- a/install.php +++ b/install.php @@ -9,6 +9,11 @@ $content = rex_file::get(rex_path::addon('ycom', 'install/tablesets/yform_user.json')); if (is_string($content) && '' !== $content) { + // vorher noch ycom_auth_password einbinden, da bei Install diese nicht bekannt ist. + if (!class_exists('rex_yform_value_ycom_auth_password')) { + include rex_path::addon('ycom', 'plugins/auth/lib/yform/value/ycom_auth_password.php'); + } + rex_yform_manager_table_api::importTablesets($content); }