Skip to content

Commit 63780af

Browse files
authored
Merge pull request #147 from phpbb/update/trackerKey
Change tracker project key to start with PHPBB-
2 parents 20a96b1 + 6021129 commit 63780af

File tree

4 files changed

+19
-21
lines changed

4 files changed

+19
-21
lines changed

.github/workflows/tests.yml

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -93,23 +93,23 @@ jobs:
9393
strategy:
9494
matrix:
9595
include:
96-
- php: '7.1'
96+
- php: '7.2'
9797
db: "mariadb:10.1"
98-
- php: '7.1'
98+
- php: '7.2'
9999
db: "mariadb:10.2"
100-
- php: '7.1'
100+
- php: '7.2'
101101
db: "mariadb:10.3"
102-
- php: '7.1'
102+
- php: '7.2'
103103
db: "mariadb:10.4"
104-
- php: '7.1'
104+
- php: '7.2'
105105
db: "mariadb:10.5"
106-
- php: '7.1'
106+
- php: '7.2'
107107
db: "mysql:5.6"
108108
db_alias: "MyISAM Tests"
109109
MYISAM: 1
110-
- php: '7.1'
110+
- php: '7.2'
111111
db: "mysql:5.6"
112-
- php: '7.1'
112+
- php: '7.2'
113113
db: "mysql:5.7"
114114
- php: '7.2'
115115
db: "mysql:5.7"
@@ -244,18 +244,16 @@ jobs:
244244
strategy:
245245
matrix:
246246
include:
247-
- php: '7.1'
247+
- php: '7.2'
248248
db: "postgres:9.5"
249-
- php: '7.1'
249+
- php: '7.2'
250250
db: "postgres:9.6"
251-
- php: '7.1'
251+
- php: '7.2'
252252
db: "postgres:10"
253-
- php: '7.1'
253+
- php: '7.2'
254254
db: "postgres:11"
255-
- php: '7.1'
255+
- php: '7.2'
256256
db: "postgres:12"
257-
- php: '7.1'
258-
db: "postgres:13"
259257
- php: '7.2'
260258
db: "postgres:13"
261259
- php: '7.3'

language/en/common.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@
8484
'STATUS' => 'Status',
8585

8686
'TICKET' => 'Ticket',
87-
'TICKET_ERROR' => 'Ticket ID must be of the format “PHPBB3-#####”.',
87+
'TICKET_ERROR' => 'Ticket ID must be of the format “PHPBB-#####” or “PHPBB3-#####”.',
8888
'TICKET_ERROR_DUP' => 'You must click on an idea title from the live search results. To delete the duplicate, clear the field and press ENTER. To exit this field press ESC.',
89-
'TOP' => 'Top',
89+
'TOP' => 'Top',
9090
'TOP_IDEAS' => 'Top Ideas',
9191
'TOTAL_IDEAS' => [
9292
1 => '%d idea',

styles/prosilver/template/idea_body.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ <h3>{{ lang('STATUS') }}</h3>
5353
{% if IDEA_TICKET or S_CAN_EDIT %}
5454
<div class="status-item flex-box flex-align-end">
5555
{{ lang('TICKET') ~ lang('COLON') }}
56-
<label for="ticketeditinput"><a id="ticketlink" {% if IDEA_TICKET %}href="https://tracker.phpbb.com/browse/PHPBB3-{{ IDEA_TICKET }}">PHPBB3-{{ IDEA_TICKET }}{% else %}style="display:none">{% endif %}</a></label>
56+
<label for="ticketeditinput"><a id="ticketlink" {% if IDEA_TICKET %}href="https://tracker.phpbb.com/browse/PHPBB-{{ IDEA_TICKET }}">PHPBB-{{ IDEA_TICKET }}{% else %}style="display:none">{% endif %}</a></label>
5757
{% if S_CAN_EDIT %}
5858
<a href="{{ U_EDIT_TICKET }}" id="ticketedit" data-l-add="{{ lang('ADD') }}" data-l-edit="{{ lang('EDIT') }}">{% if IDEA_TICKET %}<i class="icon fa-fw fa-pencil"></i>{{ lang('EDIT') }}{% else %}<i class="icon fa-fw fa-plus-circle"></i>{{ lang('ADD') }}{% endif %}</a>
59-
<input type="text" id="ticketeditinput" class="ideainput"{% if IDEA_TICKET %} value="PHPBB3-{{ IDEA_TICKET }}"{% endif %} placeholder="PHPBB3-#####" data-l-err="{{ lang('ERROR') }}" data-l-msg="{{ lang('TICKET_ERROR') }}">
59+
<input type="text" id="ticketeditinput" class="ideainput"{% if IDEA_TICKET %} value="PHPBB-{{ IDEA_TICKET }}"{% endif %} placeholder="PHPBB-#####" data-l-err="{{ lang('ERROR') }}" data-l-msg="{{ lang('TICKET_ERROR') }}">
6060
{% endif %}
6161
</div>
6262
{% endif %}

styles/prosilver/template/ideas.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,13 @@
224224
value = $this.val(),
225225
info;
226226

227-
if (value && !(info = /^PHPBB3-(\d{1,6})$/.exec(value))) {
227+
if (value && !(info = /^PHPBB3?-(\d{1,6})$/.exec(value))) {
228228
phpbb.alert($this.attr('data-l-err'), $this.attr('data-l-msg'));
229229
return;
230230
}
231231

232232
if (value) {
233-
value = 'PHPBB3-' + info[1];
233+
value = 'PHPBB-' + info[1];
234234
}
235235

236236
showLoadingIndicator();

0 commit comments

Comments
 (0)