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

Minor, fix a variable name that I derped in recent refactoring.

Auditors: btrahan

+2 -2
+2 -2
src/applications/repository/engine/PhabricatorRepositoryPullEngine.php
··· 140 140 141 141 if (empty($repo_path)) { 142 142 $err = true; 143 - $msg = 143 + $message = 144 144 "Expected to find a git repository at '{$path}', but ". 145 145 "there was no result from `git rev-parse --show-toplevel`. ". 146 146 "Something is misconfigured or broken. The git repository ". 147 147 "may be inside a '.git/' directory."; 148 148 } else if (!Filesystem::pathsAreEquivalent($repo_path, $path)) { 149 149 $err = true; 150 - $msg = 150 + $message = 151 151 "Expected to find repo at '{$path}', but the actual ". 152 152 "git repository root for this directory is '{$repo_path}'. ". 153 153 "Something is misconfigured. The repository's 'Local Path' should ".