Skip to content
Snippets Groups Projects
Commit 40746685 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2004700 by brentaar: Correct method name case of getPluginId in FilterTestReplace.

parent 4d492fed
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ class FilterTestReplace extends FilterBase {
*/
public function process($text, $langcode, $cache, $cache_id) {
$text = array();
$text[] = 'Filter: ' . $this->getLabel() . ' (' . $this->getPluginID() . ')';
$text[] = 'Filter: ' . $this->getLabel() . ' (' . $this->getPluginId() . ')';
$text[] = 'Language: ' . $langcode;
$text[] = 'Cache: ' . ($cache ? 'Enabled' : 'Disabled');
if ($cache_id) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment