@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.

Pholio - finish off making public (ie not logged in) views work

Summary: Fixes T2652. Did some testing post T2691 to see if I could close this and noted an error in the JS if you view the page not logged in. This fixes that error. Everything else I can think of seems to work...? :D

Test Plan: played around with a mock not logged in and got sensible interactions and no errors

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2652

Differential Revision: https://secure.phabricator.com/D6438

+3 -1
+3 -1
webroot/rsrc/js/application/pholio/behavior-pholio-mock-view.js
··· 631 631 } 632 632 633 633 load_inline_comments(); 634 - JX.DOM.invoke(JX.$(config.commentFormID), 'shouldRefresh'); 634 + if (config.loggedIn) { 635 + JX.DOM.invoke(JX.$(config.commentFormID), 'shouldRefresh'); 636 + } 635 637 636 638 JX.Stratcom.listen('resize', null, redraw_image); 637 639 redraw_image();