diff options
-rwxr-xr-x | bin/wantedpages.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/wantedpages.php b/bin/wantedpages.php index 54bfd4755..44254a8ec 100755 --- a/bin/wantedpages.php +++ b/bin/wantedpages.php @@ -134,13 +134,14 @@ class WantedPagesCLI extends DokuCLI { $links = array(); $cns = getNS($page['id']); $exists = false; + $pid = $page['id']; foreach($instructions as $ins) { if($ins[0] == 'internallink' || ($conf['camelcase'] && $ins[0] == 'camelcaselink')) { $mid = $ins[1][0]; resolve_pageid($cns, $mid, $exists); if(!$exists) { list($mid) = explode('#', $mid); //record pages without hashs - $links[] = $mid; + $links[] = "$pid => $mid"; } } } |