Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
488
Issues
488
List
Boards
Labels
Service Desk
Milestones
Merge Requests
25
Merge Requests
25
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISPConfig
ISPConfig 3
Commits
7a62b126
Commit
7a62b126
authored
Jul 03, 2019
by
Till Brehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed #5070 Firewall > Character not allowed in tcp port definition
parent
8c08db9b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
install/sql/incremental/upd_dev_collection.sql
install/sql/incremental/upd_dev_collection.sql
+3
-1
install/sql/ispconfig3.sql
install/sql/ispconfig3.sql
+2
-2
No files found.
install/sql/incremental/upd_dev_collection.sql
View file @
7a62b126
...
...
@@ -80,4 +80,6 @@ INSERT IGNORE INTO `dns_ssl_ca` (`id`, `sys_userid`, `sys_groupid`, `sys_perm_us
ALTER
TABLE
`dns_soa`
CHANGE
`xfer`
`xfer`
TEXT
NULL
;
ALTER
TABLE
`dns_soa`
CHANGE
`also_notify`
`also_notify`
TEXT
NULL
;
ALTER
TABLE
`dns_slave`
CHANGE
`xfer`
`xfer`
TEXT
NULL
;
\ No newline at end of file
ALTER
TABLE
`dns_slave`
CHANGE
`xfer`
`xfer`
TEXT
NULL
;
ALTER
TABLE
`firewall`
CHANGE
`tcp_port`
`tcp_port`
TEXT
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NULL
DEFAULT
NULL
;
ALTER
TABLE
`firewall`
CHANGE
`udp_port`
`udp_port`
TEXT
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NULL
DEFAULT
NULL
;
\ No newline at end of file
install/sql/ispconfig3.sql
View file @
7a62b126
...
...
@@ -682,8 +682,8 @@ CREATE TABLE `firewall` (
`sys_perm_group`
varchar
(
5
)
default
NULL
,
`sys_perm_other`
varchar
(
5
)
default
NULL
,
`server_id`
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
`tcp_port`
varchar
(
255
)
default
NULL
,
`udp_port`
varchar
(
255
)
default
NULL
,
`tcp_port`
text
,
`udp_port`
text
,
`active`
enum
(
'n'
,
'y'
)
NOT
NULL
default
'y'
,
PRIMARY
KEY
(
`firewall_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment