fix error message when Image_graph is missing

Closes: #1212
This commit is contained in:
Antoine Beaupré 2009-08-04 18:25:19 +00:00
parent cca8516e94
commit 72a8be3fb5
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
*/
@require_once("../class/config.php");
if ((@include_once 'Image/Graph.php') === FALSE) {
echo "<p class=\"error\">". _("Image_Graph not installed. use 'aptitude install php-pear' then 'pear --alldeps install Image_Graph-devel' to see the graph.")."</p>";
echo "<p class=\"error\">". _("Image_Graph not installed. use 'aptitude install php-pear' then 'pear install --alldeps Image_Graph-devel' to see the graph.")."</p>";
exit(0);
}