Skip to content

Commit 5092278

Browse files
author
Marius Burkard
committed
Merge branch 'stable-3.1' of git.ispconfig.org:ispconfig/ispconfig3 into stable-3.1
2 parents be90262 + f43994c commit 5092278

33 files changed

+40
-13
lines changed

interface/lib/classes/tform_base.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ function validateField($field_name, $field_value, $validators) {
10391039
break;
10401040
case 'V6PREFIXLENGTH':
10411041
// find shortes ipv6 subnet can`t be longer
1042-
$sql_v6 = $app->db->queryOneRecord("SELECT ip_address FROM server_ip WHERE ip_type = 'IPv6' AND virtualhost = 'y' ORDER BY CHAR_LENGTH(ip_address) ASC LIMIT 0,1;");
1042+
$sql_v6 = $app->db->queryOneRecord("SELECT ip_address FROM server_ip WHERE ip_type = 'IPv6' AND virtualhost = 'y' ORDER BY CHAR_LENGTH(ip_address) ASC LIMIT 0,1");
10431043
$sql_v6_explode=explode(':',$sql_v6['ip_address']);
10441044
$explode_field_value = explode(':',$field_value);
10451045
if (count($sql_v6_explode) < count($explode_field_value) && isset($sql_v6['ip_address'])) {

interface/web/admin/lib/lang/de_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ $wb['awstats_settings_txt'] = 'AWStats Einstellungen';
173173
$wb['backup_mode_txt'] = 'Backupmodus';
174174
$wb['backup_mode_userzip'] = 'Backup Dateien gehören dem Web Benutzer (.zip Datei)';
175175
$wb['backup_mode_rootgz'] = 'Backup aller Dateien des Webverzeichnisses als Root Benutzer';
176+
$wb['backup_time_txt'] = 'Backupzeit';
176177
$wb['firewall_txt'] = 'Firewall';
177178
$wb['mailbox_quota_stats_txt'] = 'E-Mailkonto Beschränkung Statistiken';
178179
$wb['enable_ip_wildcard_txt'] = 'IP Adressen Wildcard (*) aktivieren';

interface/web/admin/lib/lang/en_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ $wb["fastcgi_config_syntax_txt"] = 'FastCGI config syntax';
101101
$wb["backup_mode_txt"] = 'Backup mode';
102102
$wb["backup_mode_userzip"] = 'Backup web files owned by web user as zip';
103103
$wb["backup_mode_rootgz"] = 'Backup all files in web directory as root user';
104+
$wb["backup_time_txt"] = 'Backup time';
104105
$wb["server_type_txt"] = 'Server Type';
105106
$wb["nginx_vhost_conf_dir_txt"] = 'Nginx Vhost config dir';
106107
$wb["nginx_vhost_conf_enabled_dir_txt"] = 'Nginx Vhost config enabled dir';

interface/web/admin/templates/system_config_domains_edit.htm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ <h1><tmpl_var name="list_head_txt"></h1>
66
<tmpl_if name="list_desc_txt"><p><tmpl_var name="list_desc_txt"></p></tmpl_if>
77

88
<div class="form-group">
9-
<div style="float:left;width:100%">
10-
<p class="label" style="width:270px">{tmpl_var name='use_domain_module_txt'}</p>
11-
<div class="col-sm-9">
12-
{tmpl_var name='use_domain_module'}
13-
</div>
9+
<div class="col-sm-3 text-right">
10+
{tmpl_var name='use_domain_module'}
11+
</div>
12+
<div class="col-sm-9">
13+
<p><strong>{tmpl_var name='use_domain_module_txt'}</strong></p>
14+
<p>{tmpl_var name='use_domain_module_hint'}</p>
1415
</div>
15-
<div style="float:left;width:500px;margin-top:20px">{tmpl_var name='use_domain_module_hint'}</div>
1616
</div>
1717
<div class="form-group">
1818
<label class="col-sm-3 control-label">{tmpl_var name='new_domain_txt'}</label>

interface/web/client/templates/domain_list.htm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ <h1><tmpl_var name="list_head_txt"></h1>
4545

4646
<tfoot>
4747
<tr>
48-
<td colspan="4"><tmpl_var name="paging"></td>
48+
<td colspan="3"><tmpl_var name="paging"></td>
4949
</tr>
5050
</tfoot>
5151
</table>
5252
</div>
5353

54-
54+

interface/web/dashboard/dashlets/templates/modules.htm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ <h2>{tmpl_var name='available_modules_txt'}</h2>
99
<div class='title'>{tmpl_var name='modules_title'}</div>
1010
</div>
1111
</div>
12-
<a href='#' class='btn btn-default button' data-capp='{tmpl_var name="modules_name"}'>Go to {tmpl_var name='modules_title'}</a>
12+
<a href='#' class='btn btn-default button' data-capp='{tmpl_var name="modules_name"}'>{tmpl_var name='go_to_txt'} {tmpl_var name='modules_title'}</a>
1313
</li>
1414
</tmpl_loop>
1515
</ul>
16-
</div>
16+
</div>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<?php
22
$wb['available_modules_txt'] = 'Available Modules';
3+
$wb['go_to_txt'] = 'Go to';
34
?>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<?php
22
$wb['available_modules_txt'] = 'Налични Модули';
3+
$wb['go_to_txt'] = 'Go to';
34
?>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<?php
22
$wb['available_modules_txt'] = 'Módulos Disponíveis';
3+
$wb['go_to_txt'] = 'Go to';
34
?>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<?php
22
$wb['available_modules_txt'] = 'Modules disponibles';
3+
$wb['go_to_txt'] = 'Go to';
34
?>

0 commit comments

Comments
 (0)