-
Notifications
You must be signed in to change notification settings - Fork 17
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
Issue56fix #58
Issue56fix #58
Conversation
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.
related to:
kanboard/kanboard@b138a99
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.
i didn't look into the why, but when sending $not_editable from the controller, i.e.
$this->response->html($this->helper->layout->app('wiki:wiki/show', array(
'not_editable' => ($this->userSession->isLogged()) ? false : true,
'project' => $project,
'title' => $project['name'] .= " ". t('Wiki'),
'wikipages' => $this->wiki->getWikipages($project['id']),
), 'wiki:wiki/sidebar'));
caused the top right drop downs to no longer function:
and the modals to also not function, i.e. edit wiki, or notification modal
instead, i put (isset($not_editable)) ?: $not_editable = false;
into the template to simply check if it is set, and set to false if it is not.
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.
In the end, what can you try to get the drop-down lists back to work?
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.
Thank you! There is no error, the dropdown list works!
ps Sorry, I forgot to undo previous changes
So it seems, a PR must have 1 reviewer, and I cannot review my own code. which makes no sense, since anyone else can submit a PR and I can review it and merge it....There is a flaw in that system. |
Thanks, work fine! |
@lastlink can you give @alfredbuehler same roles as me, so we can approve our merge requests and get this plugin situated again? |
Can do |
@creecros done. I've pushed release 0.3.3 out with latest changes kanboard/website#510 |
@lastlink you are a true hero! |
All Submissions:
New Feature Submissions:
Description
Fixes #
'max_size' => get_upload_max_size(),
Changes proposed in this pull request: