mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-08 22:01:03 +01:00
Add supportsSearch to Phame Blog/Post
Summary: Flips the bits from true to false in transaction editor. Test Plan: update a post, search for new term Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T9897 Differential Revision: https://secure.phabricator.com/D16120
This commit is contained in:
parent
cfa73eb544
commit
695f0b09b2
2 changed files with 2 additions and 2 deletions
|
@ -227,7 +227,7 @@ final class PhameBlogEditor
|
||||||
|
|
||||||
|
|
||||||
protected function supportsSearch() {
|
protected function supportsSearch() {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function shouldApplyHeraldRules(
|
protected function shouldApplyHeraldRules(
|
||||||
|
|
|
@ -264,7 +264,7 @@ final class PhamePostEditor
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function supportsSearch() {
|
protected function supportsSearch() {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function shouldApplyHeraldRules(
|
protected function shouldApplyHeraldRules(
|
||||||
|
|
Loading…
Reference in a new issue