This commit is contained in:
Abdulrahman
2019-05-26 00:43:03 +03:00
parent 4e39127fab
commit 412be337a7
5 changed files with 12 additions and 5 deletions

View File

@@ -75,7 +75,7 @@
</div>
<div class="modal-body">
<label class="form-control">
<input type="text" class="form-control" id="k" name="k" placeholder="{lang.IP} {lang.OR} {lang.USERNAME}" value="{filled_username}">
<input type="text" class="form-control" id="k" name="k" placeholder="{lang.IP} {lang.OR} {lang.USERNAME}" value="">
</label>
<small>
{lang.BAN_EXP2}

View File

@@ -4,7 +4,7 @@
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="./">{lang.R_CPINDEX}</a></li>
<li class="breadcrumb-item active">{lang.R_REPORTS}</li>
<IF NAME="current_smt == show_h24"><li class="breadcrumb-item active"> {lang.SHOW_FROM_24H}</li></IF>
<IF NAME="current_smt == 'show_h24'"><li class="breadcrumb-item active"> {lang.SHOW_FROM_24H}</li></IF>
</ol>
@@ -116,4 +116,4 @@
<IF NAME="there_queue">
<br><hr>
<div class="alert alert-info">{lang.DELETE_PROCESS_IN_WORK}</div>
</IF>
</IF>

View File

@@ -160,7 +160,9 @@
<select class="form-control" id="cfrom" name="cfrom">
<option value="-1">{lang.DEFAULT_GROUP}</option>
<LOOP NAME="e_groups"><IF LOOP="id == 2"><ELSE><option value="{{id}}">{{name}}</option></IF></LOOP>
<IF NAME="c_groups">
<LOOP NAME="c_groups"><option value="{{id}}">{{name}}</option></LOOP>
</IF>
</select>
</div>
@@ -178,6 +180,7 @@
<!-- end delete group modal -->
<IF NAME="c_groups">
<LOOP NAME="c_groups">
<div id="delete_group_{{id}}" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="delAGroup" aria-hidden="true">
@@ -218,6 +221,7 @@
</form>
</div>
</LOOP>
</IF>
<!-- end delete group modal -->
<!-- ********** -->

View File

@@ -427,7 +427,7 @@ if (isset($go_menu))
foreach ($go_menu as $m=>$d)
{
$go_menu_html .= '<li class="' . ($d['current'] ? 'active' : '') . '" id="c_' . $d['goto'] . '">' .
'<a' . ($m == 'site' ? ' target="_blank" ' : ' ') . 'href="' . $d['link'] . '" ' . ($d['confirm'] ? ' onclick="javascript:return confirm_form();"' : '') . '>' .
'<a' . ($m == 'site' ? ' target="_blank" ' : ' ') . 'href="' . $d['link'] . '" ' . (! empty($d['confirm']) ? ' onclick="javascript:return confirm_form();"' : '') . '>' .
$d['name'] . '</a></li>';
}
}

View File

@@ -680,7 +680,10 @@ function kleeja_style_info($style_name)
}
else
{
$inf_r[$t[0]] = $t[1];
if (! empty($t[0]))
{
$inf_r[$t[0]] = empty($t[1]) ? '' : $t[1];
}
}
}