diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-05-09 18:54:57 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-05-30 17:26:00 +0200 |
commit | ae6ad754a430309796e1963684b59c01739ba4dd (patch) | |
tree | fff362c619d0cddb7ec42b6cb8d813d3cd38b69d /phpBB/phpbb/textreparser/base.php | |
parent | 2dc19cec9d3cb0c1e9ab8ef0afd7515f4bb7cee1 (diff) | |
download | forums-ae6ad754a430309796e1963684b59c01739ba4dd.tar forums-ae6ad754a430309796e1963684b59c01739ba4dd.tar.gz forums-ae6ad754a430309796e1963684b59c01739ba4dd.tar.bz2 forums-ae6ad754a430309796e1963684b59c01739ba4dd.tar.xz forums-ae6ad754a430309796e1963684b59c01739ba4dd.zip |
[ticket/13803] Moved the add_missing_fields() call to the base class
PHPBB3-13803
Diffstat (limited to 'phpBB/phpbb/textreparser/base.php')
-rw-r--r-- | phpBB/phpbb/textreparser/base.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/textreparser/base.php b/phpBB/phpbb/textreparser/base.php index 85327cdfce..47ac177e05 100644 --- a/phpBB/phpbb/textreparser/base.php +++ b/phpBB/phpbb/textreparser/base.php @@ -174,6 +174,7 @@ abstract class base implements reparser_interface */ protected function reparse_record(array $record) { + $record = $this->add_missing_fields($record); $unparsed = array_merge( $record, generate_text_for_edit( |