File tree Expand file tree Collapse file tree 4 files changed +19
-21
lines changed
styles/prosilver/template Expand file tree Collapse file tree 4 files changed +19
-21
lines changed Original file line number Diff line number Diff line change @@ -93,23 +93,23 @@ jobs:
93
93
strategy :
94
94
matrix :
95
95
include :
96
- - php : ' 7.1 '
96
+ - php : ' 7.2 '
97
97
db : " mariadb:10.1"
98
- - php : ' 7.1 '
98
+ - php : ' 7.2 '
99
99
db : " mariadb:10.2"
100
- - php : ' 7.1 '
100
+ - php : ' 7.2 '
101
101
db : " mariadb:10.3"
102
- - php : ' 7.1 '
102
+ - php : ' 7.2 '
103
103
db : " mariadb:10.4"
104
- - php : ' 7.1 '
104
+ - php : ' 7.2 '
105
105
db : " mariadb:10.5"
106
- - php : ' 7.1 '
106
+ - php : ' 7.2 '
107
107
db : " mysql:5.6"
108
108
db_alias : " MyISAM Tests"
109
109
MYISAM : 1
110
- - php : ' 7.1 '
110
+ - php : ' 7.2 '
111
111
db : " mysql:5.6"
112
- - php : ' 7.1 '
112
+ - php : ' 7.2 '
113
113
db : " mysql:5.7"
114
114
- php : ' 7.2'
115
115
db : " mysql:5.7"
@@ -244,18 +244,16 @@ jobs:
244
244
strategy :
245
245
matrix :
246
246
include :
247
- - php : ' 7.1 '
247
+ - php : ' 7.2 '
248
248
db : " postgres:9.5"
249
- - php : ' 7.1 '
249
+ - php : ' 7.2 '
250
250
db : " postgres:9.6"
251
- - php : ' 7.1 '
251
+ - php : ' 7.2 '
252
252
db : " postgres:10"
253
- - php : ' 7.1 '
253
+ - php : ' 7.2 '
254
254
db : " postgres:11"
255
- - php : ' 7.1 '
255
+ - php : ' 7.2 '
256
256
db : " postgres:12"
257
- - php : ' 7.1'
258
- db : " postgres:13"
259
257
- php : ' 7.2'
260
258
db : " postgres:13"
261
259
- php : ' 7.3'
Original file line number Diff line number Diff line change 84
84
'STATUS ' => 'Status ' ,
85
85
86
86
'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-#####”. ' ,
88
88
'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 ' ,
90
90
'TOP_IDEAS ' => 'Top Ideas ' ,
91
91
'TOTAL_IDEAS ' => [
92
92
1 => '%d idea ' ,
Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ <h3>{{ lang('STATUS') }}</h3>
53
53
{% if IDEA_TICKET or S_CAN_EDIT %}
54
54
< div class ="status-item flex-box flex-align-end ">
55
55
{{ 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 >
57
57
{% if S_CAN_EDIT %}
58
58
< 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') }} ">
60
60
{% endif %}
61
61
</ div >
62
62
{% endif %}
Original file line number Diff line number Diff line change 224
224
value = $this . val ( ) ,
225
225
info ;
226
226
227
- if ( value && ! ( info = / ^ P H P B B 3 - ( \d { 1 , 6 } ) $ / . exec ( value ) ) ) {
227
+ if ( value && ! ( info = / ^ P H P B B 3 ? - ( \d { 1 , 6 } ) $ / . exec ( value ) ) ) {
228
228
phpbb . alert ( $this . attr ( 'data-l-err' ) , $this . attr ( 'data-l-msg' ) ) ;
229
229
return ;
230
230
}
231
231
232
232
if ( value ) {
233
- value = 'PHPBB3 -' + info [ 1 ] ;
233
+ value = 'PHPBB -' + info [ 1 ] ;
234
234
}
235
235
236
236
showLoadingIndicator ( ) ;
You can’t perform that action at this time.
0 commit comments