From: Sven Schöling Date: Thu, 20 Jun 2013 16:43:46 +0000 (+0200) Subject: Warnung vermeiden X-Git-Tag: release-3.1.0beta1~294 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=5fed92b8c9e78ea0dce129f469c1b9f4ae5219fa;p=kivitendo-erp.git Warnung vermeiden --- diff --git a/SL/Auth/SessionValue.pm b/SL/Auth/SessionValue.pm index cb1c7e386..cfaa6245c 100644 --- a/SL/Auth/SessionValue.pm +++ b/SL/Auth/SessionValue.pm @@ -37,6 +37,7 @@ sub get { sub get_dumped { my ($self) = @_; + no warnings 'once'; local $YAML::Stringify = 1; return YAML::Dump($self->get); }