Project

General

Profile

Actions

Bug #62088

closed

Browse Menu skips page

Added by Nicki Uhlbach over 9 years ago. Updated about 9 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2014-10-07
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:

Description

The browse menu skips every page with no. 2 in version 6.2.5. When TYPO3 6.2.4 is checked out everything is fine. So it seems to be that there is a bug in the core.

Here is the code I've used:


lib.submenuArrow = COA
lib.submenuArrow {
  10 = HMENU
  10 {
    special.entryLevel = 1
    special = browse
    special.items = prev

    1 = TMENU
    1 {
      NO = 1
      NO.ATagParams = class="pageArrow prev" 
    }
  }

  20 < .10
  20.special.items = next
  20.1.NO.ATagParams = class="pageArrow next" 
}


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #58792: next in Menu is not working as expected with localizationsClosed2014-05-14

Actions
Actions #1

Updated by Markus Klein over 9 years ago

Can you please rephrase the problem. What does "no. 2" mean?
Does it skip pages with the string "no. 2" in the name?
Does it skip pages with uid=2?
...

Besides that, I suspect http://review.typo3.org/32333 to be related here.

Actions #2

Updated by Nicki Uhlbach over 9 years ago

Sorry, I think I was too tired …

So here another try:
The browse menu works well except on page with position no. 2 of a tree (or subtree in my case), no matter of names, order, pIDs, … etc.
The arrow to the previous page does not appear, not even in the code. There is no wrong property, no mistake in the Fluid, I've checked everything and I've tested it with 10 pages in different page trees. When I now checkout on TYPO3 6.2.4 the prev button appears.

Here is a german description of my problem if this could help: http://webdesign-forum.net/thread-3122-post-14981.html#pid14981

Thanks for your support!

Actions #3

Updated by Christian Kuhn over 9 years ago

  • Is Regression changed from No to Yes
Actions #4

Updated by David Gurk over 9 years ago

I can confirm this Bug in TYPO3 6.2.5. The first page isn't reachable from the 2nd page with HMENU browse prev.

Example:

- Page0
-- Page1
-- Page2
-- Page3

If I am on Page2, the previous-link isn't shown. On Page3 is all fine.

A possible library to test:

lib.previousButton = HMENU
lib.previousButton {
    special = browse
    special {
        items = prev
        # Deactivate - Jump in next page tree section (category)
        items.prevnextToSection = 0
    }
    1 = TMENU
    1.NO = 1
    1.NO {
        stdWrap.cObject = COA
        stdWrap.cObject {
            10 = TEXT
            10.data = {$lllPath}locallang.xlf:menu.pager.prev
        }
        ATagParams = class="button arrow-left" 
        ATagBeforeWrap = 1
    }
}

# Generate next button
lib.nextButton = HMENU
lib.nextButton {
    special = browse
    special {
        items = next
        # Deactivate - Jump in next page tree section (category)
        items.prevnextToSection = 0
    }
    1 = TMENU
    1.NO = 1
    1.NO {
        stdWrap.cObject = COA
        stdWrap.cObject {
            10 = TEXT
            10.data = {$lllPath}locallang.xlf:menu.pager.next
        }
        ATagParams = class="button" 
        ATagBeforeWrap = 1
    }
}

With TYPO3 6.2.4 it work fine as described in the issue description.

Actions #5

Updated by Peter Linzenkirchner over 9 years ago

I can confirm this bug too in 6.2.6.

Actions #6

Updated by Masod Mohmand over 9 years ago

Doesnt work under 6.2.6 but its working under 6.2.9 again.

Actions #7

Updated by Wouter Wolters over 9 years ago

  • Status changed from New to Closed

Thanks for the feedback. Will close the issue now.
If this is a wrong decision please send me an email.

Actions #8

Updated by David Gurk over 9 years ago

I can confirm this. My problem explained above is solved.

Actions #9

Updated by David Gurk about 9 years ago

This issue should be updated to resolved.

Actions

Also available in: Atom PDF