mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 09:12:41 +01:00
Fix a small bug - %d => %s
Summary: easy peasy. noticed it trying to fix an image. Test Plan: can fix image by phid once more! Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D6659
This commit is contained in:
parent
f0857e4fd8
commit
ee9830a950
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ abstract class PhabricatorFilesManagementWorkflow
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$file = id(new PhabricatorFile())->loadOneWhere(
|
$file = id(new PhabricatorFile())->loadOneWhere(
|
||||||
'phid = %d',
|
'phid = %s',
|
||||||
$name);
|
$name);
|
||||||
if (!$file) {
|
if (!$file) {
|
||||||
throw new PhutilArgumentUsageException(
|
throw new PhutilArgumentUsageException(
|
||||||
|
|
Loading…
Reference in a new issue