Skip to content

Commit 9607a50

Browse files
SajakiSajaki
authored andcommitted
alignment
1 parent 72413ac commit 9607a50

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ env:
4141
branches:
4242
only:
4343
- develop32
44+
- develop32_cdb
4445
- /^\d+(\.\d+)?\.x$/
4546

4647
install:

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@
2222
}
2323
],
2424
"require": {
25-
"php": ">=5.4",
26-
"composer/installers": "~1.0"
25+
"php": ">=5.4.0",
26+
"composer/installers": "~1.0.0",
27+
"phpbb/phpbb": ">=3.2.0"
2728
},
2829
"require-dev": {
2930
"phpbb/epv": "dev-master"

migrations/release_2_2_7.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ public function update_data()
3030
return array(
3131
array('config.update', array('rt_version', '2.2.7')),
3232
array('permission.add', array('u_rt_number')),
33-
array('permission.permission_set', array('ROLE_USER_FULL', 'u_rt_number')),
34-
array('permission.permission_set', array('ROLE_USER_FULL', 'u_rt_view')),
33+
array('permission.permission_set', array('ROLE_USER_FULL', 'u_rt_number'))
3534
);
3635
}
3736

migrations/release_2_2_8.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public function update_data()
2929
{
3030
return array(
3131
array('config.update', array('rt_version', '2.2.8')),
32-
array('custom', array(array($this, 'fix_rt_number')))
32+
array('custom', array(array($this, 'fix_rt_number'))),
33+
array('permission.permission_set', array('ROLE_USER_FULL', 'u_rt_view')),
3334
);
3435

3536
}

0 commit comments

Comments
 (0)