summaryrefslogtreecommitdiff
path: root/wiki_graph.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-03-20 15:58:38 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-03-20 15:58:38 +0000
commite23b65af7861bdd9768456d6ab87bbfe663cad62 (patch)
tree06f33a4b56b8542a4af66625f3fd4eddd6e92e1b /wiki_graph.php
parentdb10effa72b6df482bb4c5f01401a205d9131799 (diff)
downloadwiki-e23b65af7861bdd9768456d6ab87bbfe663cad62.tar.gz
wiki-e23b65af7861bdd9768456d6ab87bbfe663cad62.tar.bz2
wiki-e23b65af7861bdd9768456d6ab87bbfe663cad62.zip
fix graphviz - was a real mess
Diffstat (limited to 'wiki_graph.php')
-rw-r--r--wiki_graph.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/wiki_graph.php b/wiki_graph.php
index ef6ef0b..6fe1223 100644
--- a/wiki_graph.php
+++ b/wiki_graph.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_wiki/wiki_graph.php,v 1.2 2005/06/28 07:46:27 spiderr Exp $
+ * $Header: /cvsroot/bitweaver/_bit_wiki/wiki_graph.php,v 1.3 2006/03/20 15:58:38 squareing Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
*
- * $Id: wiki_graph.php,v 1.2 2005/06/28 07:46:27 spiderr Exp $
+ * $Id: wiki_graph.php,v 1.3 2006/03/20 15:58:38 squareing Exp $
* @package wiki
* @subpackage functions
*/
@@ -60,5 +60,5 @@ $garg = array(
$str = $wikilib->wiki_get_link_structure($_REQUEST['page'], $_REQUEST['level']);
$graph = new Image_GraphViz();
$wikilib->wiki_page_graph($str, $graph, $garg);
-$graph->image();
+$graph->image( 'png' );
?>