Skip to content

Commit

Permalink
Preparing for 3.0.1 due to last minute oops
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWitness committed Mar 11, 2021
1 parent 82728e9 commit eaf9b54
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

--- 3.0.1 ---
* Correct syntax error in functions.php

--- 3.0.0 ---
* Redesign for sustainability and extensibility
* New 'Panellib' design to allow for easy customization
Expand All @@ -8,6 +11,9 @@
* Add additional core functions to reduce code duplication
* New table columns
* Allow Panels to not allow 'Forced Refresh'
* Fix erratic behavior when moving panels on page
* Better support for mobile browsers
* Support panel widths

--- 2.0.6 ---
* Add dashboard names
Expand Down
2 changes: 1 addition & 1 deletion INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[info]
name = intropage
version = 3.0.0
version = 3.0.1
longname = Intropage/Dashboard
author = The Cacti Group, Petr Macek
email = deverlopers@cacti.net, petr.macek@kostax.cz
Expand Down
2 changes: 1 addition & 1 deletion include/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ function get_panel_details($panel_id, $user_id = 0) {
$panel['priority'] = $definition['priority'];
$panel['alarm'] = $definition['alarm'];
$panel['refresh_interval'] = $definition['refresh'];
$panel['force'] = (isset($definition['force']) ? $definition['force']:true;
$panel['force'] = isset($definition['force']) ? $definition['force']:true;

$panel['id'] = sql_save($panel, 'plugin_intropage_panel_data');
$panel['name'] = $definition['name'] . __(' [ Updates in %s ]', intropage_readable_interval($next_update), 'intropage');
Expand Down

0 comments on commit eaf9b54

Please sign in to comment.