Navigation Menu

Skip to content

Commit

Permalink
Merge branches 'mantishub-1.3.x' and 'mantishub-1.3.x-m' of https://b…
Browse files Browse the repository at this point in the history
…itbucket.org/vboctor/mantishub into mantishub-1.3.x-m
  • Loading branch information
syncguru committed Feb 5, 2015
2 parents e86f59f + c7dd77a commit 821f5f3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
15 changes: 7 additions & 8 deletions core/filter_api.php
Expand Up @@ -3932,18 +3932,17 @@ function print_filter_do_filter_by_date( $p_hide_checkbox = false ) {
<td colspan="2">
<label>
<input type="checkbox" id="use_date_filters" name="<?php
echo FILTER_PROPERTY_FILTER_BY_DATE ?>"<?php
check_checked( gpc_string_to_bool( $g_filter[FILTER_PROPERTY_FILTER_BY_DATE] ), true ) ?> />
<?php echo lang_get( 'use_date_filters' )?>
echo FILTER_PROPERTY_FILTER_BY_DATE ?>"<?php
check_checked(gpc_string_to_bool($g_filter[FILTER_PROPERTY_FILTER_BY_DATE]), true) ?> />
<?php echo lang_get('use_date_filters') ?>
</label>
</td>
</tr>
<?php
}

$t_menu_disabled = '';
if( 'on' !== $g_filter[FILTER_PROPERTY_FILTER_BY_DATE] ) {
$t_menu_disabled = ' disabled="disabled" ';
$t_menu_disabled = '';
if ('on' !== $g_filter[FILTER_PROPERTY_FILTER_BY_DATE]) {
$t_menu_disabled = ' disabled="disabled" ';
}
}
?>

Expand Down
5 changes: 3 additions & 2 deletions manage_plugin_page.php
Expand Up @@ -180,7 +180,7 @@ function ( $p_p1, $p_p2 ) {

echo '<tr>';
echo '<td class="small center">',$t_name,'<input type="hidden" name="change_',$t_basename,'" value="1"/></td>';
echo '<td class="small">',$t_description,$t_author,$t_url,'</td>';
echo '<td class="small">',$t_description,'</td>';
echo '<td class="small center">',$t_depends,'</td>';
if( 'MantisCore' == $t_basename ) {
echo '<td>&#160;</td><td>&#160;</td>';
Expand Down Expand Up @@ -309,7 +309,8 @@ function ( $p_p1, $p_p2 ) {

echo '<tr>';
echo '<td class="small center">',$t_name,'</td>';
echo '<td class="small">',$t_description,$t_author,$t_url,'</td>';

echo '<td class="small">',$t_description,'</td>';
echo '<td class="center">',$t_depends,'</td>';
echo '<td class="center">';
if( $t_ready ) {
Expand Down

0 comments on commit 821f5f3

Please sign in to comment.