Sven Burkert

Results 17 comments of Sven Burkert

This should do it (tested in TYPO3 v8): ```diff - $currentBackendUser = $this->getCurrentBackendUser(); - $currentUserGroups = trim($currentBackendUser['usergroup'], ','); - $userGroups = false === empty($currentUserGroups) ? explode(',', $currentUserGroups) : []; +...

No, don't use getGroupNames() because it returns **all** existing BE usergroups. This is the fix for TYPO3 v10: ```diff - $currentUserGroups = trim($currentBackendUser['usergroup'], ','); + $currentUserGroups = trim($currentBackendUser['usergroup_cached_list'], ','); ```

@gilbertsoft Yes, the background image is still present, but that should be all.

> Same as before, the .css files are generated see https://github.com/benjaminkott/bootstrap_package/blob/master/Build/Gruntfile.js. Please change the correct sources and rebuild the .css. Thanks! @gilbertsoft Sorry, I didn't know these files were generated...

I am using windows as OS. Running `yarn build` results in ``` yarn run v1.22.10 $ ./node_modules/.bin/grunt build Das System kann den angegebenen Pfad nicht finden. error Command failed with...

@gilbertsoft > Sadly the change does not work for me, it's almost the same behaviour like before your patch The important thing is to remove "user-select" or set it to...

We could add the main tag in the layout, but that means it includes all columns (left and right content column, main content column, subnav). But I think it would...

@olivermeckel Yes, you are right, you should include all three content blocks in the main tag in Default.html. My point is, that every template should have one main tag (not...

I've fixed it quick & dirty with this: ```HTML active active ```