aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-25 12:15:44 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-04-25 12:15:44 +0200
commitb32895308d13d5d9b0cd954fd8ce871a1fa073da (patch)
tree2a158ed71ab6ebc625dae51fc8f188b1768e5aed /phpBB/phpbb
parent87899b0e140400e23341ea1286d50e330132be90 (diff)
downloadforums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.tar
forums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.tar.gz
forums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.tar.bz2
forums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.tar.xz
forums-b32895308d13d5d9b0cd954fd8ce871a1fa073da.zip
[ticket/12273] Update since version to 3.1.0-a* style
PHPBB3-12273
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/log/log.php8
-rw-r--r--phpBB/phpbb/permissions.php2
-rw-r--r--phpBB/phpbb/user.php2
3 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/phpbb/log/log.php b/phpBB/phpbb/log/log.php
index ea04344c59..d1a09f9a2b 100644
--- a/phpBB/phpbb/log/log.php
+++ b/phpBB/phpbb/log/log.php
@@ -305,7 +305,7 @@ class log implements \phpbb\log\log_interface
* @var array sql_ary Array with log data we insert into the
* database. If sql_ary[log_type] is not set,
* we won't add the entry to the database.
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$vars = array(
'mode',
@@ -411,7 +411,7 @@ class log implements \phpbb\log\log_interface
* is false, no entries will be returned.
* @var string sql_additional Additional conditions for the entries,
* e.g.: 'AND l.forum_id = 1'
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$vars = array(
'mode',
@@ -521,7 +521,7 @@ class log implements \phpbb\log\log_interface
* @event core.get_logs_modify_entry_data
* @var array row Entry data from the database
* @var array log_entry_data Entry's data which is returned
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$vars = array('row', 'log_entry_data');
extract($this->dispatcher->trigger_event('core.get_logs_modify_entry_data', compact($vars)));
@@ -598,7 +598,7 @@ class log implements \phpbb\log\log_interface
* get the permission data
* @var array reportee_id_list Array of additional user IDs we
* get the username strings for
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$vars = array('log', 'topic_id_list', 'reportee_id_list');
extract($this->dispatcher->trigger_event('core.get_logs_get_additional_data', compact($vars)));
diff --git a/phpBB/phpbb/permissions.php b/phpBB/phpbb/permissions.php
index a3fddb0b9e..3cf39b5126 100644
--- a/phpBB/phpbb/permissions.php
+++ b/phpBB/phpbb/permissions.php
@@ -57,7 +57,7 @@ class permissions
* 'lang' => 'ACL_U_VIEWPROFILE',
* 'cat' => 'profile',
* ),
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$vars = array('types', 'categories', 'permissions');
extract($phpbb_dispatcher->trigger_event('core.permissions', compact($vars)));
diff --git a/phpBB/phpbb/user.php b/phpBB/phpbb/user.php
index 417cc71fd3..18b7a3d096 100644
--- a/phpBB/phpbb/user.php
+++ b/phpBB/phpbb/user.php
@@ -143,7 +143,7 @@ class user extends \phpbb\session
* that are absolutely needed globally using this
* event. Use local events otherwise.
* @var mixed style_id Style we are going to display
- * @since 3.1-A1
+ * @since 3.1.0-a1
*/
$vars = array(
'user_data',