https://bugs.koozali.org/show_bug.cgi?id=13276
--- Comment #2 from Brian Read <[email protected]> ---
Also, seeing this:
Nov 7 06:21:24 mailserver smanager[663910]: Use of uninitialized value
$properties{"Content"} in string eq at
/usr/share/smanager/script/../lib/SrvMngr/Controller/Ddclient.pm line 515.
It seems that the Content property can be missing sometimes, so:
if (defined $properties{'Content'} &&
$properties{'Content'} eq 'wwwpublic') {
$content = $c->l('PRIMARY_SITE');
} else {
# To avoid passing undefined to $c->l, ensure
Content is defined or use a fallback
my $content_key = defined
$properties{'Content'} ? $properties{'Content'} : '';
$content = $c->l('CONTENT', $content_key);
}
--
You are receiving this mail because:
You are the QA Contact for the bug._______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/