mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 15:22: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 {
|
||||
$file = id(new PhabricatorFile())->loadOneWhere(
|
||||
'phid = %d',
|
||||
'phid = %s',
|
||||
$name);
|
||||
if (!$file) {
|
||||
throw new PhutilArgumentUsageException(
|
||||
|
|
Loading…
Reference in a new issue