@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix the whitespace issue in the message "Access Denied: Restricted File"

Summary:
Added whitespaces where missing in the restricted file message.

Closes T15270

Test Plan: Access a forbidden file. Check whitespaces in the error message.

Reviewers: O1 Blessed Committers, valerio.bozzolan, aklapper, waldyrious

Reviewed By: O1 Blessed Committers, valerio.bozzolan, waldyrious

Subscribers: aklapper, waldyrious, avivey, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Tags: #ux

Maniphest Tasks: T15270

Differential Revision: https://we.phorge.it/D25419

authored by

Waldir Pimenta and committed by
Valerio Bozzolan
c8fb5046 81653abb

+1 -1
+1 -1
src/applications/policy/filter/PhabricatorPolicyFilter.php
··· 699 699 $text_details = array_filter(array_merge($head, $exceptions)); 700 700 $text_details = implode(' ', $text_details); 701 701 702 - $html_details = array($head, $more, $exceptions); 702 + $html_details = array($head, $more, phutil_implode_html(' ', $exceptions)); 703 703 704 704 $access_denied = $this->renderAccessDenied($object); 705 705