1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 11:13:59 +02:00

[ticket/17402] Add CLI reparser option to force reparsing BBCode

PHPBB-17402
This commit is contained in:
rxu
2024-09-28 18:28:49 +07:00
parent 914383a581
commit 2ac9c0ae7c
4 changed files with 25 additions and 14 deletions

View File

@@ -41,6 +41,7 @@ interface reparser_interface
*
* @param integer $min_id Lower bound
* @param integer $max_id Upper bound
* @param bool $force_bbcode_reparsing Flag indicating if BBCode should be reparsed unconditionally
*/
public function reparse_range($min_id, $max_id);
public function reparse_range($min_id, $max_id, bool $force_bbcode_reparsing = false);
}