Skip to content

Commit

Permalink
Fix installed memory link
Browse files Browse the repository at this point in the history
partial fix for #460
  • Loading branch information
bochoven committed Apr 5, 2016
1 parent 81568d9 commit 622ccd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/helpers/site_helper.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

// Munkireport version (last number is number of commits)
$GLOBALS['version'] = '2.9.0.1888';
$GLOBALS['version'] = '2.9.0.1889';

// Return version without commit count
function get_version()
Expand Down
2 changes: 1 addition & 1 deletion app/views/widgets/installed_memory_widget.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
// Todo: add to config
var entries = [
{name: '< 4GB', link: 'memory < 4GB', count: 0, class:'btn-danger', filter: function(n){return n < 4}},
{name: '4GB +', link: '5GB memory 7GB', count: 0, class:'btn-warning', filter: function(n){return n < 8 && n >= 4}},
{name: '4GB +', link: '4GB memory 7GB', count: 0, class:'btn-warning', filter: function(n){return n < 8 && n >= 4}},
{name: '8GB +', link: 'memory > 7GB', count: 0, class:'btn-success', filter: function(n){return n >= 8}}
]
Expand Down

1 comment on commit 622ccd7

@bochoven
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix for #447

Please sign in to comment.