Commit dce3e4ac31ef2d803afba6678803df4f1346c4b8
1 parent
61ad6035
Copy the breadcrumbs properly between the parent dispatcher and the
child dispatcher. git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4899 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/dispatcher.inc.php
| ... | ... | @@ -53,7 +53,7 @@ class KTDispatcher { |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | function subDispatch(&$oOrigDispatcher) { |
| 56 | - $this->aBreadcrumbs = $oOrigDispatcher; | |
| 56 | + $this->aBreadcrumbs = $oOrigDispatcher->aBreadcrumbs; | |
| 57 | 57 | $this->bTransactionStarted = $oOrigDispatcher->bTransactionStarted; |
| 58 | 58 | return $this->dispatch(); |
| 59 | 59 | } | ... | ... |