Bug-fix-patch2
# show only active help topic in ticket edit pages.
This commit is contained in:
@@ -765,7 +765,7 @@ if ($thread->title != "") {
|
|||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>{!! Lang::get('lang.help_topic') !!} <span class="text-red"> *</span></label>
|
<label>{!! Lang::get('lang.help_topic') !!} <span class="text-red"> *</span></label>
|
||||||
<?php $help_topics = App\Model\helpdesk\Manage\Help_topic::all() ?>
|
<?php $help_topics = App\Model\helpdesk\Manage\Help_topic::where('status', '=', 1)->get() ?>
|
||||||
<select class="form-control" name="help_topic">
|
<select class="form-control" name="help_topic">
|
||||||
@foreach($help_topics as $helptopic)
|
@foreach($help_topics as $helptopic)
|
||||||
<option value="{!! $helptopic->id !!}" <?php
|
<option value="{!! $helptopic->id !!}" <?php
|
||||||
|
Reference in New Issue
Block a user