aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textreparser/reparser_interface.php
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-07-06 01:57:54 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-07-06 23:45:38 +0200
commitcf4cdcda586a2371aa92ae452951f9660737ae09 (patch)
tree15cab3410c1a38bf7520f9dc7745d8c4056f16b9 /phpBB/phpbb/textreparser/reparser_interface.php
parent7ccb6389124c5e990abaa917a6684fc3f4d072db (diff)
downloadforums-cf4cdcda586a2371aa92ae452951f9660737ae09.tar
forums-cf4cdcda586a2371aa92ae452951f9660737ae09.tar.gz
forums-cf4cdcda586a2371aa92ae452951f9660737ae09.tar.bz2
forums-cf4cdcda586a2371aa92ae452951f9660737ae09.tar.xz
forums-cf4cdcda586a2371aa92ae452951f9660737ae09.zip
[ticket/13987] Replaced optional parameter with explicit API
Added disable_save() and enable_save() to toggle a dry run PHPBB3-13987
Diffstat (limited to 'phpBB/phpbb/textreparser/reparser_interface.php')
-rw-r--r--phpBB/phpbb/textreparser/reparser_interface.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/phpbb/textreparser/reparser_interface.php b/phpBB/phpbb/textreparser/reparser_interface.php
index e201a77882..9ea1732870 100644
--- a/phpBB/phpbb/textreparser/reparser_interface.php
+++ b/phpBB/phpbb/textreparser/reparser_interface.php
@@ -25,9 +25,8 @@ interface reparser_interface
/**
* Reparse all records in given range
*
- * @param integer $min_id Lower bound
- * @param integer $max_id Upper bound
- * @param integer $dry_run If TRUE, do not save the changes
+ * @param integer $min_id Lower bound
+ * @param integer $max_id Upper bound
*/
- public function reparse_range($min_id, $max_id, $dry_run = false);
+ public function reparse_range($min_id, $max_id);
}