From ca224e5929d788e7beb3506bc734d25ac4bacfff Mon Sep 17 00:00:00 2001 From: borisneubert <> Date: Thu, 24 Apr 2014 18:39:37 +0000 Subject: [PATCH] removed require 98_SVG.pm git-svn-id: https://svn.fhem.de/fhem/trunk@5629 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/02_RSS.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fhem/FHEM/02_RSS.pm b/fhem/FHEM/02_RSS.pm index 31d821011..299277327 100644 --- a/fhem/FHEM/02_RSS.pm +++ b/fhem/FHEM/02_RSS.pm @@ -14,7 +14,11 @@ use GD; use feature qw/switch/; use vars qw(%data); use HttpUtils; -require "98_SVG.pm"; # enable use of plotAsPng() +#require "98_SVG.pm"; # enable use of plotAsPng() +sub plotAsPng(@); # forward declaration will be enough + # to ensure correct function + # and will avoid reloading 98_SVG.pm + # during fhem startup/rereadcfg my @cmd_halign= qw(halign thalign ihalign); my @cmd_valign= qw(valign tvalign ivalign);