Fixes #194 In MarkupManager filters and functions are backwards

This commit is contained in:
Sam Georges 2014-05-22 07:57:36 +10:00
parent ab2ea0a240
commit d0a1cc87fb
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ class MarkupManager
{
use \October\Rain\Support\Traits\Singleton;
const EXTENSION_FILTER = 'functions';
const EXTENSION_FUNCTION = 'filters';
const EXTENSION_FILTER = 'filters';
const EXTENSION_FUNCTION = 'functions';
const EXTENSION_TOKEN_PARSER = 'tokens';
/**