From: Benoit G. (@b. <gi...@mg...> - 2024-10-01 21:05:17
|
Benoit Grégoire pushed to branch 27.x at Tiki Wiki CMS Groupware / Tiki Commits: 1068a1e4 by franck franck kalunga at 2024-10-01T21:04:57+00:00 [FIX] Structures: breadcrumbs only showing current page --- * [FIX] Structures: breadcrumbs only showing current page --- See merge request tikiwiki/tiki!5934 See merge request tikiwiki/tiki!5938 - - - - - 1 changed file: - lib/structures/structlib.php Changes: ===================================== lib/structures/structlib.php ===================================== @@ -506,7 +506,7 @@ class StructLib extends TikiLib global $prefs; $structure_path = []; $page_info = $this->s_get_page_info($page_ref_id); - if (isset($parent_info) && $parent_info["parent_id"]) { + if (isset($page_info) && $page_info["parent_id"]) { $structure_path = $this->get_structure_path($page_info['parent_id']); } $structure_path[] = $page_info; View it on GitLab: https://gitlab.com/tikiwiki/tiki/-/commit/1068a1e40cb941d35f12bf302cb8bf161640ce8c -- View it on GitLab: https://gitlab.com/tikiwiki/tiki/-/commit/1068a1e40cb941d35f12bf302cb8bf161640ce8c You're receiving this email because of your account on gitlab.com. |