From cee21a34bb16d5e87bc462efc7203ddb1020ce8f Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Tue, 26 Nov 2013 20:40:43 +0100 Subject: [PATCH] Reverse the array, so the format is right. Fixes T3 --- DokuWikiObjectRepresentation.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/DokuWikiObjectRepresentation.class.php b/DokuWikiObjectRepresentation.class.php index 95f9821..ed063c0 100644 --- a/DokuWikiObjectRepresentation.class.php +++ b/DokuWikiObjectRepresentation.class.php @@ -114,6 +114,7 @@ abstract class DokuWikiNode { } $node = $parent; } + $path = array_reverse($path); if ($this->name != 'root') { $path[] = $this->name; }