* Mon Oct 06 2025 Brian Read <brianr@koozali.org> 2.3.0-14.sme

- Add UTF8 and avoid potential DB caching problems [SME: 13209]
This commit is contained in:
2025-10-06 08:41:08 +01:00
parent 44ef902af7
commit 80856815d3
2 changed files with 8 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ use Locale::gettext;
use SrvMngr::I18N;
use SrvMngr qw(theme_list init_session);
our $cdb = esmith::ConfigDB->open() || die "Couldn't open config db";
my $cdb;
our $REGEXP_DOMAIN = qq([a-zA-Z0-9\-\.]+);
@@ -29,6 +29,7 @@ sub main {
my $c = shift;
$c->app->log->info($c->log_req);
$cdb = esmith::ConfigDB::UTF8->open() || die "Couldn't open config db";
$cdb->reload();
my $title = $c->l('gnw_FORM_TITLE');
@@ -41,6 +42,7 @@ sub main {
sub do_update {
my $c = shift;
$c->app->log->info($c->log_req);
$cdb = esmith::ConfigDB::UTF8->open() || die "Couldn't open config db";
my $res = '';
my $result = '';

View File

@@ -3,7 +3,7 @@ Summary: Package to integrate GeneWeb (V6) into SME Server
%define name smeserver-geneweb
Name: %{name}
%define version 2.3.0
%define release 13
%define release 14
Version: %{version}
Release: %{release}%{?dist}
License: GPL
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
%postun
%changelog
* Mon Oct 06 2025 Brian Read <brianr@koozali.org> 2.3.0-14.sme
- Add UTF8 and avoid potential DB caching problems [SME: 13209]
* Sat Oct 04 2025 Brian Read <brianr@koozali.org> 2.3.0-13.sme
- Remove smanager-refresh from spec file [SME: 13212]