-
-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove attempt to use wizard on manage ACLs #29107
Conversation
🤖 Thank you for contributing to CiviCRM! ❤️ We will need to test and review this PR. 👷 Introduction for new contributors...
Quick links for reviewers...
|
{php} | ||
$currentStep = $this->getTemplateVars('step'); | ||
$wizard = [ | ||
'style' => ['barClass' => '', 'showTitle' => FALSE], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@totten you got shorter ^^
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eileenmcnaughton For that hair, it's an even trade.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol
I agree. There is a very subtle difference. (The visual effect of the empty/non-functioning wizard was akin to an extraneous |
Overview
As reported by @christianwach we are currently seeing smarty failures with php3 on the Manage ACLs screen due to it trying to add wizard navigation at the tpl layer - this just removes that on the basis it adds marginal value to a screen that is already up for replacement - also it didn't really seem to be doing what it said on the box - ie the UI seemed the same after I ripped out the code as before....
Before
After
Loads, no wizard header
Technical Details
We should back port to 5.69 as that was where it was reported
Comments