Skip to content

Commit

Permalink
Update Dashboard.php
Browse files Browse the repository at this point in the history
  • Loading branch information
adubovikov authored Sep 26, 2016
1 parent ca621b8 commit b6f2027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/RestApi/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function getDashboard(){

$boardid = str_replace(".json", "", $file);

if(array_key_exists( $boardid, $skipDashboards ) && $skipDashboards[$boardid] == 1) continue;
if(isset($skipDashboards[$boardid]) && $skipDashboards[$boardid] == 1) continue;

$dar = DASHBOARD_PARAM."/".$file;
$myfile = fopen($dar, "r") or die("Unable to open file!");
Expand Down

0 comments on commit b6f2027

Please sign in to comment.