Skip to content

Commit 860885e

Browse files
committed
Merge branch 'stable-3.1' of git.ispconfig.org:ispconfig/ispconfig3 into stable-3.1
2 parents d77fdaa + 3c1d0a6 commit 860885e

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

interface/web/mail/list/user_quota_stats.list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
$liste["auth"] = "yes";
4242

4343
// mark columns for php sorting (no real mySQL columns)
44-
$liste["phpsort"] = array('used_sort', 'percentage_sort');
44+
$liste["phpsort"] = array('used', 'percentage');
4545

4646
/*****************************************************
4747
* Suchfelder

interface/web/mail/mail_user_edit.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ function onShowNew() {
7070
function onShowEnd() {
7171
global $app, $conf;
7272

73+
// Workaround for #5448, accessed via link on quota dashlet.
74+
$app->tpl->setVar('app_module', 'mail');
75+
7376
$email = $this->dataRecord["email"];
7477
$email_parts = explode("@", $email);
7578
$app->tpl->setVar("email_local_part", $email_parts[0]);

interface/web/mail/templates/user_quota_stats_list.htm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1><tmpl_var name="list_head_txt"></h1>
1717
</tr>
1818
<tr>
1919
<td><input class="form-control" type="text" name="search_email" value="{tmpl_var name='search_email'}" /></td>
20-
<td><input class="form-control" type="text" name="search_system_user" value="{tmpl_var name='search_name'}" /></td>
20+
<td><input class="form-control" type="text" name="search_name" value="{tmpl_var name='search_name'}" /></td>
2121
<td>&nbsp;</td>
2222
<td>&nbsp;</td>
2323
<td>&nbsp;</td>
@@ -50,5 +50,5 @@ <h1><tmpl_var name="list_head_txt"></h1>
5050
</tfoot>
5151
</table>
5252
</div>
53-
53+
5454
</div>

interface/web/themes/default/templates/main.tpl.htm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta name='viewport' content='width=device-width, user-scalable=yes'>
99
<meta name='description' lang='en' content='' />
1010
<meta name='keywords' lang='en' content='' />
11-
<meta name='robots' content='index, follow' />
11+
<meta name='robots' content='noindex, nofollow' />
1212

1313
<link rel='stylesheet' href='themes/<tmpl_var name='current_theme'>/assets/stylesheets/bootstrap.min.css' />
1414
<link rel='stylesheet' href='themes/<tmpl_var name='current_theme'>/assets/stylesheets/fonts.min.css' />
@@ -123,15 +123,15 @@ <h4 class="modal-title">{tmpl_var name="datalog_changes_txt"}</h4>
123123
<script>
124124
<!--
125125
//$('.ttip').tipsy({live: true, gravity: 'ne', html: true});
126-
126+
127127
ISPConfig.tabChangeDiscard = '<tmpl_var name="tabchange_discard_enabled">';
128128
ISPConfig.tabChangeWarning = '<tmpl_var name="tabchange_warning_enabled">';
129129
ISPConfig.tabChangeWarningTxt = '<tmpl_var name="global_tabchange_warning_txt">';
130130
ISPConfig.tabChangeDiscardTxt = '<tmpl_var name="global_tabchange_discard_txt">';
131-
131+
132132
<tmpl_if name="use_loadindicator" value="y">ISPConfig.setOption('useLoadIndicator', true);</tmpl_if>
133133
<tmpl_if name="use_combobox" value="y">ISPConfig.setOption('useComboBox', true);</tmpl_if>
134-
134+
135135
$(document).ready(function() {
136136
$('#globalsearch').ispconfigSearch({
137137
dataSrc: '/dashboard/ajax_get_json.php?type=globalsearch',

0 commit comments

Comments
 (0)