From: Davide Franco Date: Fri, 22 Oct 2010 16:32:13 +0000 (+0200) Subject: bacula-web: Fixed typo in graph in classes.inc X-Git-Tag: Release-5.2.1~998 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=513158a0f16435d6645aa76f3529e89afb225da2;p=bacula%2Fbacula bacula-web: Fixed typo in graph in classes.inc - Changed from "None data to process" to "No data to process" --- diff --git a/gui/bacula-web/classes.inc b/gui/bacula-web/classes.inc index f84f44c4b5..b300c8f49d 100644 --- a/gui/bacula-web/classes.inc +++ b/gui/bacula-web/classes.inc @@ -319,7 +319,7 @@ class BCreateGraph extends BGraph { $img= @ImageCreate(200,100) or die ("Cannot intialize GD stream"); $bgc= ImageColorAllocate($img, 0, 255,255); $txc= ImageColorAllocate($img, 0,0,0); - ImageString($img, 5, 4, 4, "None data to process", $txc); + ImageString($img, 5, 4, 4, "No data to process", $txc); ImagePng($img); ImageDestroy($img); return;