Project

General

Profile

Actions

Bug #88943

closed

Epic #88474: Page tree performance in 9.5

Pagetree taking extremely long to load for editors

Added by Karina Helena Reinhardt over 4 years ago. Updated 12 months ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Pagetree
Target version:
-
Start date:
2019-08-09
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

We are testing an Upgrade from Typo3 8.7 to 9.5.8 . Our site has about 11000 pages. Our editors have permissions to see some of the pages, but not all, depending on their be group. They are allowed to edit only some pages (even less that they see). When I log in as an administrator it takes about 4 Seconds to load the pagetree. When I log in as an editor it takes about 2.5 minutes every time I refresh or reload.


Related issues 16 (1 open15 closed)

Related to TYPO3 Core - Bug #88097: Page tree data fetching is using a huge amount of memory in PHPClosed2019-04-06

Actions
Related to TYPO3 Core - Bug #89687: Page tree sends unnecessary dataClosed2019-11-14

Actions
Related to TYPO3 Core - Bug #91728: Very slow tree loading if you have multiple workspaces TYPO3 v10Closed2020-06-30

Actions
Related to TYPO3 Core - Feature #90931: Add option to disable version highlighting in the page treeNew2020-04-02

Actions
Related to TYPO3 Core - Bug #91878: Fatal error in pagetree 9.5.20Closed2020-07-28

Actions
Related to TYPO3 Core - Bug #91883: Filtering in the page tree shows translated pages alongside the L=0 onesRejected2020-07-29

Actions
Related to TYPO3 Core - Bug #91898: Reloading the page tree resets its filterRejected2020-07-30

Actions
Related to TYPO3 Core - Bug #91896: Page tree does not appear in edge browser in TYPO3 10.4.6Closed2020-07-30

Actions
Related to TYPO3 Core - Bug #91885: Page-Tree filter does not resetRejected2020-07-29

Actions
Related to TYPO3 Core - Bug #91884: Page tree filter has no delete "X", needs hitting enter and has no filter info box anymore, a big backwards step regarding usabilityClosed2020-07-29

Actions
Related to TYPO3 Core - Task #91916: Provide acceptance tests for page tree filterClosedAnja Leichsenring2020-08-01

Actions
Related to TYPO3 Core - Task #91949: Revert "Limit amount of data fetched by the page tree"ClosedBenni Mack2020-08-07

Actions
Related to TYPO3 Core - Bug #92030: Page edit panel can show wrong translation states and buttonsClosed2020-08-17

Actions
Related to TYPO3 Core - Bug #92041: Move-placeholders not considered in page treeClosed2020-08-18

Actions
Related to TYPO3 Core - Bug #92057: Workspace delete placeholder not considered in pagetreeClosed2020-08-20

Actions
Related to TYPO3 Core - Bug #92054: "Clearable" feature can't be applied to input in page tree filter Closed2020-08-20

Actions
Actions #1

Updated by Karina Helena Reinhardt over 4 years ago

  • Project changed from 9 to TYPO3 Core
  • Description updated (diff)
  • Category set to Pagetree
  • TYPO3 Version set to 9
  • PHP Version set to 7.2
Actions #2

Updated by Karina Helena Reinhardt over 4 years ago

  • Related to Bug #88097: Page tree data fetching is using a huge amount of memory in PHP added
Actions #3

Updated by Karina Helena Reinhardt over 4 years ago

  • Subject changed from Pagetree taking extremly long to load for Editors to Pagetree taking extremely long to load for Editors
Actions #4

Updated by Karina Helena Reinhardt over 4 years ago

  • Subject changed from Pagetree taking extremely long to load for Editors to Pagetree taking extremely long to load for editors
Actions #6

Updated by Karina Helena Reinhardt over 4 years ago

Thanks for the hint, much appreciated!

Actions #7

Updated by Michael Dörner over 4 years ago

We have the same problem. We upgraded from TYPO3 8.7 to 9.5.9 last week. Our website has about 10,000 pages. There are four root sites and two permission groups for the page tree. The rights of the editors differ from page to page. For editors who are assigned both permission groups and have access to all pages in the page tree, it takes up to 1 minute for the page tree to load. For administrators who have access to all pages in the page tree, it only takes a few seconds.

Actions #8

Updated by Riccardo De Contardi over 4 years ago

  • Parent task set to #88474
Actions #9

Updated by Herman Kremer over 4 years ago

We also experiencing the same problem! For editors the tree is really to slow.

Actions #10

Updated by Sebastian Müller over 4 years ago

We've got a pagetree with 15000+ pages and editors faced page tree loading times of 30 seconds.

We now patched the file web/typo3/sysext/backend/Classes/Controller/Page/TreeController.php.
In line 376 a callback for every page is called to check for fitting access rights of current user.
We do not need this check since our users are allowed to see all pages below their mount points.

After this change the page tree is returned in 1.5 seconds.

It may is a security issue for your installation if this is not OK for your editors / setup.

            $entryPoint = $repository->getTree($entryPoint, function ($page) use ($backendUser) {
                // check each page if the user has permission to access it
                return $backendUser->doesUserHaveAccess($page, Permission::PAGE_SHOW);
            });

becomes

            $entryPoint = $repository->getTree($entryPoint);

Maybe there could be a user tsconfig option be included to disable this access check?

Actions #11

Updated by Gerrit Code Review over 4 years ago

  • Status changed from New to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #12

Updated by Gerrit Code Review over 4 years ago

Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #13

Updated by Gerrit Code Review over 4 years ago

Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #14

Updated by Gerrit Code Review over 4 years ago

Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #15

Updated by Gerrit Code Review over 4 years ago

Patch set 5 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #16

Updated by Tymoteusz Motylewski over 4 years ago

  • Related to Bug #89687: Page tree sends unnecessary data added
Actions #17

Updated by Gerrit Code Review over 4 years ago

Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #18

Updated by Gerrit Code Review over 4 years ago

Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #19

Updated by Gerrit Code Review about 4 years ago

Patch set 8 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #20

Updated by B. Kausch about 4 years ago

I really can't understand why this isn't fixed yet... TYPO3 is supposed to handle many sites with many access rights in a fast way.

Actions #21

Updated by Gerrit Code Review about 4 years ago

Patch set 9 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #22

Updated by Gerrit Code Review about 4 years ago

Patch set 10 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #23

Updated by Gerrit Code Review almost 4 years ago

Patch set 11 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #24

Updated by Gerrit Code Review almost 4 years ago

Patch set 12 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #25

Updated by Thomas Prangenberg almost 4 years ago

Does anyone have a workaround for the current 9.5 version? The workaround mentioned above does not work anymore in 9.5.17 since the code has been changed considerably.
We are currently unable to patch a site with thousands of pages because it breaks the page tree for backend users.

Actions #26

Updated by Gerrit Code Review almost 4 years ago

Patch set 13 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #27

Updated by Claude Unterleitner almost 4 years ago

@Thomas Prangenberg:
There is an extension which solves the problem for TYPO3 9.5:
https://extensions.typo3.org/extension/bp_pagetree

but there are unfortunately disadvantages, e.g. the filter search isn't working anymore for all pages, so it's only a temporary solution.

Actions #28

Updated by Gerrit Code Review almost 4 years ago

Patch set 14 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #29

Updated by Gerrit Code Review almost 4 years ago

Patch set 15 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #30

Updated by Gerrit Code Review almost 4 years ago

Patch set 16 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #31

Updated by Gerrit Code Review almost 4 years ago

Patch set 17 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #32

Updated by Gerrit Code Review almost 4 years ago

Patch set 18 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #33

Updated by Gerrit Code Review almost 4 years ago

Patch set 19 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #34

Updated by Gerrit Code Review almost 4 years ago

Patch set 20 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #35

Updated by Gerrit Code Review almost 4 years ago

Patch set 21 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #36

Updated by Gerrit Code Review almost 4 years ago

Patch set 22 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #37

Updated by Gerrit Code Review almost 4 years ago

Patch set 23 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #38

Updated by Gerrit Code Review almost 4 years ago

Patch set 24 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #39

Updated by Gerrit Code Review almost 4 years ago

Patch set 25 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #40

Updated by Gerrit Code Review almost 4 years ago

Patch set 26 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #41

Updated by Gerrit Code Review almost 4 years ago

Patch set 27 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #42

Updated by Gerrit Code Review almost 4 years ago

Patch set 28 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #43

Updated by Gerrit Code Review almost 4 years ago

Patch set 29 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #44

Updated by Gerrit Code Review almost 4 years ago

Patch set 30 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #45

Updated by Danilo Caccialanza almost 4 years ago

  • Related to Bug #91728: Very slow tree loading if you have multiple workspaces TYPO3 v10 added
Actions #46

Updated by Gerrit Code Review almost 4 years ago

Patch set 31 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #47

Updated by Gerrit Code Review almost 4 years ago

Patch set 32 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #48

Updated by Gerrit Code Review almost 4 years ago

Patch set 33 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #49

Updated by Gerrit Code Review almost 4 years ago

Patch set 34 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #50

Updated by Gerrit Code Review almost 4 years ago

Patch set 35 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #51

Updated by Gerrit Code Review almost 4 years ago

Patch set 36 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #52

Updated by Gerrit Code Review almost 4 years ago

Patch set 37 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #53

Updated by Gerrit Code Review almost 4 years ago

Patch set 38 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #54

Updated by Gerrit Code Review almost 4 years ago

Patch set 39 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #55

Updated by Gerrit Code Review almost 4 years ago

Patch set 40 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #56

Updated by Gerrit Code Review almost 4 years ago

Patch set 41 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #57

Updated by Gerrit Code Review almost 4 years ago

Patch set 42 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #58

Updated by Gerrit Code Review almost 4 years ago

Patch set 43 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #59

Updated by Gerrit Code Review almost 4 years ago

Patch set 44 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #60

Updated by Gerrit Code Review almost 4 years ago

Patch set 45 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #61

Updated by Gerrit Code Review almost 4 years ago

Patch set 46 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #62

Updated by Gerrit Code Review almost 4 years ago

Patch set 47 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/62086

Actions #63

Updated by Gerrit Code Review almost 4 years ago

Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65026

Actions #64

Updated by Gerrit Code Review almost 4 years ago

Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65027

Actions #65

Updated by Tymoteusz Motylewski almost 4 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #66

Updated by Gerrit Code Review almost 4 years ago

  • Status changed from Resolved to Under Review

Patch set 2 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65027

Actions #67

Updated by Tymoteusz Motylewski almost 4 years ago

  • Status changed from Under Review to Resolved
Actions #68

Updated by Christian Kuhn over 3 years ago

  • Related to Feature #90931: Add option to disable version highlighting in the page tree added
Actions #69

Updated by Oliver Hader over 3 years ago

  • Related to Bug #91878: Fatal error in pagetree 9.5.20 added
Actions #70

Updated by Stefan P over 3 years ago

  • Related to Bug #91883: Filtering in the page tree shows translated pages alongside the L=0 ones added
Actions #71

Updated by Stefan P over 3 years ago

  • Related to deleted (Bug #91883: Filtering in the page tree shows translated pages alongside the L=0 ones)
Actions #72

Updated by Oliver Hader over 3 years ago

  • Related to Bug #91883: Filtering in the page tree shows translated pages alongside the L=0 ones added
Actions #73

Updated by Anja Leichsenring over 3 years ago

  • Related to Bug #91898: Reloading the page tree resets its filter added
Actions #74

Updated by Anja Leichsenring over 3 years ago

  • Related to Bug #91896: Page tree does not appear in edge browser in TYPO3 10.4.6 added
Actions #75

Updated by Anja Leichsenring over 3 years ago

  • Related to Bug #91885: Page-Tree filter does not reset added
Actions #76

Updated by Anja Leichsenring over 3 years ago

  • Related to Bug #91884: Page tree filter has no delete "X", needs hitting enter and has no filter info box anymore, a big backwards step regarding usability added
Actions #77

Updated by Anja Leichsenring over 3 years ago

  • Related to Task #91916: Provide acceptance tests for page tree filter added
Actions #78

Updated by Benni Mack over 3 years ago

  • Related to Task #91949: Revert "Limit amount of data fetched by the page tree" added
Actions #79

Updated by Gerrit Code Review over 3 years ago

  • Status changed from Resolved to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #80

Updated by Gerrit Code Review over 3 years ago

Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #81

Updated by Gerrit Code Review over 3 years ago

Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #82

Updated by Gerrit Code Review over 3 years ago

Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #83

Updated by Gerrit Code Review over 3 years ago

Patch set 5 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #84

Updated by Gerrit Code Review over 3 years ago

Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #85

Updated by Gerrit Code Review over 3 years ago

Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #86

Updated by Gerrit Code Review over 3 years ago

Patch set 8 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #87

Updated by Gerrit Code Review over 3 years ago

Patch set 9 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #88

Updated by Gerrit Code Review over 3 years ago

Patch set 10 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #89

Updated by Gerrit Code Review over 3 years ago

Patch set 11 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #90

Updated by Gerrit Code Review over 3 years ago

Patch set 12 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #91

Updated by Gerrit Code Review over 3 years ago

Patch set 13 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #92

Updated by Gerrit Code Review over 3 years ago

Patch set 14 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #93

Updated by Gerrit Code Review over 3 years ago

Patch set 15 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #94

Updated by Gerrit Code Review over 3 years ago

Patch set 16 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #95

Updated by Gerrit Code Review over 3 years ago

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65321

Actions #96

Updated by Gerrit Code Review over 3 years ago

Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65321

Actions #97

Updated by Gerrit Code Review over 3 years ago

Patch set 17 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #98

Updated by Gerrit Code Review over 3 years ago

Patch set 18 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #99

Updated by Gerrit Code Review over 3 years ago

Patch set 19 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #100

Updated by Gerrit Code Review over 3 years ago

Patch set 20 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #101

Updated by Gerrit Code Review over 3 years ago

Patch set 21 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #102

Updated by Gerrit Code Review over 3 years ago

Patch set 22 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #103

Updated by Gerrit Code Review over 3 years ago

Patch set 23 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #104

Updated by Gerrit Code Review over 3 years ago

Patch set 24 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #105

Updated by Gerrit Code Review over 3 years ago

Patch set 25 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #106

Updated by Gerrit Code Review over 3 years ago

Patch set 26 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65208

Actions #107

Updated by Anonymous over 3 years ago

  • Related to Bug #92030: Page edit panel can show wrong translation states and buttons added
Actions #108

Updated by Gerrit Code Review over 3 years ago

Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65354

Actions #109

Updated by Gerrit Code Review over 3 years ago

Patch set 2 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65354

Actions #110

Updated by Benni Mack over 3 years ago

  • Status changed from Under Review to Resolved
Actions #111

Updated by Gerrit Code Review over 3 years ago

  • Status changed from Resolved to Under Review

Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65355

Actions #112

Updated by Gerrit Code Review over 3 years ago

Patch set 2 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65355

Actions #113

Updated by Benni Mack over 3 years ago

  • Status changed from Under Review to Resolved
Actions #114

Updated by Gerrit Code Review over 3 years ago

  • Status changed from Resolved to Under Review

Patch set 3 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65355

Actions #115

Updated by Benni Mack over 3 years ago

  • Status changed from Under Review to Resolved
Actions #116

Updated by Christian Kuhn over 3 years ago

  • Related to Bug #92041: Move-placeholders not considered in page tree added
Actions #117

Updated by Christian Kuhn over 3 years ago

  • Related to Bug #92057: Workspace delete placeholder not considered in pagetree added
Actions #118

Updated by Oliver Hader over 3 years ago

  • Related to Bug #92054: "Clearable" feature can't be applied to input in page tree filter added
Actions #119

Updated by Benni Mack over 3 years ago

  • Status changed from Resolved to Closed
Actions #120

Updated by Gerrit Code Review over 2 years ago

Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65321

Actions #121

Updated by Gerrit Code Review over 2 years ago

Patch set 4 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65321

Actions #122

Updated by Gerrit Code Review 12 months ago

Patch set 5 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/65321

Actions

Also available in: Atom PDF