Skip to content

Commit

Permalink
Final 2.7.0.0
Browse files Browse the repository at this point in the history
Issue with more info icon popover on past winners views. Removing for now until 3.0.0 rework of public UX/UI.
  • Loading branch information
geoffhumphrey committed Apr 12, 2024
1 parent 247804c commit 09f9af7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sections/past_winners.sec.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
}

if ($go != "default") {
//include (SECTIONS.'bos.sec.php');

$special_best_info_db_table = $prefix."special_best_info_".$go;
$special_best_data_db_table = $prefix."special_best_data_".$go;
Expand Down Expand Up @@ -72,5 +71,6 @@
if ($winner_display_method == 2) include (SECTIONS.'winners_subcategory.sec.php');

}

}
?>
2 changes: 1 addition & 1 deletion sections/winners.sec.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
if ($_SESSION['prefsStyleSet'] == "BA") $winners_table_body_1 .= $row_scores['brewStyle'];
else $winners_table_body_1 .= $style.": ".$row_scores['brewStyle'];

if ((!empty($row_scores['brewInfo'])) && ($section != "results")) {
if ((!empty($row_scores['brewInfo'])) && ($section != "results") && ($section != "past-winners")) {
$winners_table_body_1 .= " <a href=\"#".$row_scores['id']."\" tabindex=\"0\" role=\"button\" data-toggle=\"popover\" data-trigger=\"hover\" data-placement=\"auto top\" data-container=\"body\" title=\"".$label_info."\" data-content=\"".str_replace("^", " ", $row_scores['brewInfo'])."\"><span class=\"hidden-xs hidden-sm hidden-md hidden-print fa fa-info-circle\"></span></a>";
}

Expand Down
2 changes: 1 addition & 1 deletion sections/winners_category.sec.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
if ($winner_style_set == "BA") $table_body1 .= $row_scores['brewStyle'];
else $table_body1 .= $style.": ".$row_scores['brewStyle'];

if ((!empty($row_scores['brewInfo'])) && ($section != "results")) {
if ((!empty($row_scores['brewInfo'])) && ($section != "results") && ($section != "past-winners")) {
$table_body1 .= " <a href=\"#".$row_scores['id']."\" tabindex=\"0\" role=\"button\" data-toggle=\"popover\" data-trigger=\"hover\" data-placement=\"auto top\" data-container=\"body\" title=\"".$label_info."\" data-content=\"".str_replace("^", " ", $row_scores['brewInfo'])."\"><span class=\"hidden-xs hidden-sm hidden-md hidden-print fa fa-info-circle\"></span></a>";
}

Expand Down
2 changes: 1 addition & 1 deletion sections/winners_subcategory.sec.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
$table_body1 .= "<td width=\"25%\">";
$table_body1 .= $style.": ".$style_long;

if ((!empty($row_scores['brewInfo'])) && ($section != "results")) {
if ((!empty($row_scores['brewInfo'])) && ($section != "results") && ($section != "past-winners")) {
$table_body1 .= " <a href=\"#".$row_scores['id']."\" tabindex=\"0\" role=\"button\" data-toggle=\"popover\" data-trigger=\"hover\" data-placement=\"auto top\" data-container=\"body\" title=\"".$label_info."\" data-content=\"".str_replace("^", " ", $row_scores['brewInfo'])."\"><span class=\"hidden-xs hidden-sm hidden-md hidden-print fa fa-info-circle\"></span></a>";
}

Expand Down

0 comments on commit 09f9af7

Please sign in to comment.