diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-29 02:53:54 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-29 02:53:54 +0000 |
commit | d2b4c636c27d55eb8ce16fba96767497de8c4433 (patch) | |
tree | 7c59cc240629357fbe3aedb160f338644044b7c0 | |
parent | b7bfd011cb03d26d12d6adf35db4f455e985703d (diff) |
replace title with level, for ease in diagnosing levelling issues.
-rw-r--r-- | core/controllers/welcome.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/controllers/welcome.php b/core/controllers/welcome.php index c9d124a4..d11c2c42 100644 --- a/core/controllers/welcome.php +++ b/core/controllers/welcome.php @@ -130,7 +130,7 @@ class Welcome_Controller extends Template_Controller { $data = "digraph G {\n"; foreach ($items as $item) { $data .= " $item->parent_id -> $item->id\n"; - $data .= " $item->id [label=\"$item->id $item->title <$item->left, $item->right>\"]\n"; + $data .= " $item->id [label=\"$item->id [$item->level] <$item->left, $item->right>\"]\n"; } $data .= "}\n"; |