Navigation Menu

Skip to content

Commit

Permalink
More spot fixes for spaces and tabs.
Browse files Browse the repository at this point in the history
  • Loading branch information
syncguru committed Aug 29, 2014
1 parent c309d16 commit dcf2263
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion account_prof_edit_page.php
Expand Up @@ -75,7 +75,7 @@
layout_page_begin( 'manage_overview_page.php' );

if( profile_is_global( $f_profile_id ) ) {
print_manage_menu( 'manage_prof_menu_page.php' );
print_manage_menu( 'manage_prof_menu_page.php' );
}
?>

Expand Down
2 changes: 1 addition & 1 deletion account_sponsor_page.php
Expand Up @@ -275,7 +275,7 @@
<td class="bold" width="10%"><?php echo lang_get( 'amount' ) ?></td>
<td class="bold" width="10%"><?php echo lang_get( 'status' ) ?></td>
</tr>
<?php
<?php
$t_bug_list = array();
$t_total_owing = 0;
$t_total_paid = 0;
Expand Down
24 changes: 12 additions & 12 deletions bug_actiongroup_page.php
Expand Up @@ -231,16 +231,16 @@
echo "<input type=\"hidden\" name=\"custom_field_id\" value=\"$t_custom_field_id\" />";
}
?>
<div class="widget-box widget-color-blue2">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<?php echo $t_question_title ?>
</h4>
</div>
<div class="widget-body">
<div class="widget-main no-padding">
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<div class="widget-box widget-color-blue2">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<?php echo $t_question_title ?>
</h4>
</div>
<div class="widget-body">
<div class="widget-main no-padding">
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<tbody>
<?php
if( !$t_finished ) {
Expand All @@ -266,7 +266,7 @@
} else {
echo '<select name="' . $t_form . '" class="input-sm">';

switch ( $f_action ) {
switch( $f_action ) {
case 'COPY':
case 'MOVE':
print_project_option_list( null, false );
Expand Down Expand Up @@ -304,7 +304,7 @@
</tr>
<?php
if( isset( $t_question_title2 ) ) {
switch ( $f_action ) {
switch( $f_action ) {
case 'RESOLVE':
$t_show_product_version = ( ON == config_get( 'show_product_version' ) )
|| ( ( AUTO == config_get( 'show_product_version' ) )
Expand Down
4 changes: 2 additions & 2 deletions bug_view_inc.php
Expand Up @@ -256,7 +256,7 @@

# Send Bug Reminder
if( $t_show_reminder_link ) {
print_small_button( $t_bug_reminder_link, lang_get( 'bug_reminder' ) );
print_small_button( $t_bug_reminder_link, lang_get( 'bug_reminder' ) );
}

if( !is_blank( $t_wiki_link ) ) {
Expand All @@ -270,7 +270,7 @@
if( is_numeric( $t_label ) ) {
print_bracket_link_prepared( $t_href );
} else {
print_small_button( $t_href, $t_label );
print_small_button( $t_href, $t_label );
}
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion core/classes/MantisFilter.class.php
Expand Up @@ -90,7 +90,7 @@ abstract function display( $p_filter_value );
* @return array Filter options keyed by value=>display
*/
public function options() {
return array()
return array();
}
}

0 comments on commit dcf2263

Please sign in to comment.