From 72a8be3fb5892e9f51f2422aff1e6c848e55bd24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Tue, 4 Aug 2009 18:25:19 +0000 Subject: [PATCH] fix error message when Image_graph is missing Closes: #1212 --- bureau/admin/stats_members.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bureau/admin/stats_members.php b/bureau/admin/stats_members.php index e515c921..21af3754 100644 --- a/bureau/admin/stats_members.php +++ b/bureau/admin/stats_members.php @@ -29,7 +29,7 @@ */ @require_once("../class/config.php"); if ((@include_once 'Image/Graph.php') === FALSE) { - echo "

". _("Image_Graph not installed. use 'aptitude install php-pear' then 'pear --alldeps install Image_Graph-devel' to see the graph.")."

"; + echo "

". _("Image_Graph not installed. use 'aptitude install php-pear' then 'pear install --alldeps Image_Graph-devel' to see the graph.")."

"; exit(0); }