Ryan Cramer
Ryan Cramer
> I guess I don't understand why PW returns "default" for these users when calling $user->language - yes you are assuming because you don't know, but why can't the same...
@ivangretsky Can you try changing [line 825](https://github.com/processwire/processwire/blob/dev/wire/core/MarkupQA.php#L825) in /wire/core/MarkupQA.php from this: ~~~~~ if(($pagefile->page->id != $this->page->id && !$user->hasPermission('page-view', $pagefile->page)) ~~~~~ to this: ~~~~~ if(($pagefile->page->id != $this->page->id && !$pagefile->page->viewable(false)) ~~~~~ Does that...
@ivangretsky Thanks for trying it. Do you by any chance have access control enabled manually on any of your repeater templates or fields within them? If so, disable that. If...
@ivangretsky Also the issue fixed in #1561 may be related
@schwarzdesign Swapping the order of htmlspecialchars and strip_tags means that strip_tags does nothing at all, so at that stage could just be removed. The strip_tags is not necessary for security,...
@matjazpotocnik I can't duplicate the issue here, are you able to? Maybe it's already been fixed? Page title of `Mini-Jobber (gross
@matjazpotocnik Strange, I can't duplicate it here on the current dev branch.
A showIf condition cannot work on a locked field, because a locked field has no inputs rendered in the form for a showIf condition to evaluate. The purpose of a...
@adrianbj The `count` is a count of the records in the `field_[name]` table only. It doesn't tell you anything about what parent they live under, status, etc. I don't think...
@klor This sounds potentially like a cache. ProcessWire caches the top navigation once per session, so if you made an update to permissions/roles that affects the top navigation, then the...