Skip to content

Commit 4d13310

Browse files
committed
Version 1.1.3
1 parent 3721f63 commit 4d13310

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type" : "phpbb-extension",
44
"description" : "Forces the user to confirm the terms of use.",
55
"homepage" : "https://github.com/phpbb-de/phpbb-ext-tou",
6-
"version" : "1.1.2",
7-
"time" : "2020-09-30",
6+
"version" : "1.1.3",
7+
"time" : "2020-10-02",
88
"license" : "GPL-2.0-only",
99
"authors" : [
1010
{

migrations/v113.php

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
/**
3+
*
4+
* Terms of use extension for the phpBB Forum Software package.
5+
*
6+
* @copyright (c) 2020 Crizzo <https://www.phpBB.de>
7+
* @license GNU General Public License, version 2 (GPL-2.0)
8+
*
9+
*/
10+
11+
namespace phpbbde\tou\migrations;
12+
13+
class v113 extends \phpbb\db\migration\migration
14+
{
15+
static public function depends_on()
16+
{
17+
return array(
18+
'\phpbbde\tou\migrations\v112',
19+
);
20+
}
21+
22+
public function update_data()
23+
{
24+
$data = array(
25+
// Update version
26+
array('config.update', array('tou_ext_version', '1.1.3')),
27+
);
28+
return $data;
29+
}
30+
}

0 commit comments

Comments
 (0)