Skip to content

Commit

Permalink
bug: Fix escape string in CatalogItemAppealStatusStatusValues.php
Browse files Browse the repository at this point in the history
Summary:
:bug: Fix escape string in catalog item appeal status values

X-link: facebook/facebook-php-business-sdk#594

Reviewed By: mengxuanzhangz

Differential Revision: D52982956

Pulled By: stcheng

fbshipit-source-id: 586da15dd14f8aaa0e98bb36e582d225fb09f578
  • Loading branch information
HamzaAlayed authored and facebook-github-bot committed Jan 23, 2024
1 parent ef61c0b commit fc4f414
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class {{node:pascal_case}}{{field_or_param:pascal_case}}Values extends AbstractE
{{#values_with_naming_convention}}
{{#.}}
const {{#is_irregular_name}}VALUE_{{/is_irregular_name}}{{{value:upper_case}}} = '{{{value}}}';
const {{#is_irregular_name}}VALUE_{{/is_irregular_name}}{{{value:upper_case}}} = '{{{value:escape_single_quote}}}';
{{/.}}
{{/values_with_naming_convention}}
}

0 comments on commit fc4f414

Please sign in to comment.