Skip to content

Commit 040249b

Browse files
committed
grapher.php isn't generating any edges.
Hi, **grapher.php** isn't generating any edges. solution: change the Value of the Boolean in Line 165 from true to false. Before: $ins = p_cached_instructions(wikiFN($pid),**true**,$pid); After: $ins = p_cached_instructions(wikiFN($pid),**false**,$pid); refs: http://www.splitbrain.org/blog/2010-08/02-graphing_dokuwiki_help_needed I've just try and the solution works nice ! Cheers
1 parent 4db2d53 commit 040249b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grapher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function gather_data($namespaces,$depth=0,$incmedia='ns'){
162162
// now get links and media
163163
foreach($pages as $pid => $item){
164164
// get instructions
165-
$ins = p_cached_instructions(wikiFN($pid),true,$pid);
165+
$ins = p_cached_instructions(wikiFN($pid),false,$pid);
166166
// find links and media usage
167167
foreach($ins as $i){
168168
$mid = null;

0 commit comments

Comments
 (0)