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
483
Issues
483
List
Boards
Labels
Service Desk
Milestones
Merge Requests
23
Merge Requests
23
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
1ebaacfa
Commit
1ebaacfa
authored
May 16, 2018
by
Till Brehm
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'stable-3.1' into 'stable-3.1'
fixed checkbox in dmarc template See merge request
!781
parents
d536e5a6
34988378
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
install/sql/incremental/upd_dev_collection.sql
install/sql/incremental/upd_dev_collection.sql
+1
-0
install/sql/ispconfig3.sql
install/sql/ispconfig3.sql
+1
-1
interface/web/dns/templates/dns_dmarc_edit.htm
interface/web/dns/templates/dns_dmarc_edit.htm
+1
-1
No files found.
install/sql/incremental/upd_dev_collection.sql
View file @
1ebaacfa
...
...
@@ -2,3 +2,4 @@ ALTER TABLE `web_domain` ADD COLUMN `ssl_letsencrypt_exclude` enum('n','y') NOT
ALTER
TABLE
`remote_user`
ADD
`remote_access`
ENUM
(
'y'
,
'n'
)
NOT
NULL
DEFAULT
'y'
AFTER
`remote_password`
;
ALTER
TABLE
`remote_user`
ADD
`remote_ips`
TEXT
AFTER
`remote_access`
;
ALTER
TABLE
`server_php`
ADD
`active`
enum
(
'y'
,
'n'
)
NOT
NULL
DEFAULT
'y'
AFTER
`php_fpm_pool_dir`
;
ALTER
TABLE
`web_domain`
CHANGE
`log_retention`
`log_retention`
INT
(
11
)
NOT
NULL
DEFAULT
'10'
;
install/sql/ispconfig3.sql
View file @
1ebaacfa
...
...
@@ -1990,7 +1990,7 @@ CREATE TABLE `web_domain` (
`http_port`
int
(
11
)
unsigned
NOT
NULL
DEFAULT
'80'
,
`https_port`
int
(
11
)
unsigned
NOT
NULL
DEFAULT
'443'
,
`folder_directive_snippets`
text
,
`log_retention`
int
(
11
)
NOT
NULL
DEFAULT
'
3
0'
,
`log_retention`
int
(
11
)
NOT
NULL
DEFAULT
'
1
0'
,
PRIMARY
KEY
(
`domain_id`
),
UNIQUE
KEY
`serverdomain`
(
`server_id`
,
`ip_address`
,
`domain`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
...
...
interface/web/dns/templates/dns_dmarc_edit.htm
View file @
1ebaacfa
...
...
@@ -147,7 +147,7 @@
<div
class=
"form-group"
>
<label
class=
"col-sm-2 control-label"
>
{tmpl_var name='active_txt'}
</label>
<div
class=
"col-sm-3"
>
{tmpl_var name='active'}
<input
type=
"checkbox"
value=
"1"
id=
"active"
name=
"active"
{
tmpl_var
name=
'active'
}
</
input
>
</div>
</div>
...
...
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