aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/event
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-02-11 15:19:47 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-02-11 15:19:47 +0100
commit45199adebdfc00f436a719de1c5772429367b756 (patch)
tree00754d1f10dc2b9b9507619f5e842f5cd0eac4ac /phpBB/phpbb/event
parent1470985ff20197589cbbab96180d80b0148d20d5 (diff)
parent779758f2195f87868da3694b5ffd00adee1be0b3 (diff)
downloadforums-45199adebdfc00f436a719de1c5772429367b756.tar
forums-45199adebdfc00f436a719de1c5772429367b756.tar.gz
forums-45199adebdfc00f436a719de1c5772429367b756.tar.bz2
forums-45199adebdfc00f436a719de1c5772429367b756.tar.xz
forums-45199adebdfc00f436a719de1c5772429367b756.zip
Merge pull request #4523 from senky/ticket/13429
[ticket/13429] Replace @change with @changed in event docblocks
Diffstat (limited to 'phpBB/phpbb/event')
-rw-r--r--phpBB/phpbb/event/php_exporter.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/event/php_exporter.php b/phpBB/phpbb/event/php_exporter.php
index d2ab0595c0..ae3553c558 100644
--- a/phpBB/phpbb/event/php_exporter.php
+++ b/phpBB/phpbb/event/php_exporter.php
@@ -510,7 +510,7 @@ class php_exporter
/**
* Find the "@changed" Information lines
*
- * @param string $tag_name Should be 'changed' or 'change'
+ * @param string $tag_name Should be 'change', not 'changed'
* @return array Absolute line numbers
* @throws \LogicException
*/
@@ -658,7 +658,7 @@ class php_exporter
{
$match = array();
$line = str_replace("\t", ' ', ltrim($line, "\t "));
- preg_match('#^\* @change(d)? (\d+\.\d+\.\d+(?:-(?:a|b|RC|pl)\d+)?)( (?:.*))?$#', $line, $match);
+ preg_match('#^\* @changed (\d+\.\d+\.\d+(?:-(?:a|b|RC|pl)\d+)?)( (?:.*))?$#', $line, $match);
if (!isset($match[2]))
{
throw new \LogicException("Invalid '@changed' information for event "