Skip to content

Commit

Permalink
add missing semicolon because I've been touching too much python
Browse files Browse the repository at this point in the history
  • Loading branch information
rickheil committed Mar 19, 2019
1 parent d46a2a2 commit 6b2b967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/profile_listing.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
$version = $item['payload_name'];
$profiles = $item['num_profiles'];
$profile[$name][$version] = $profiles;
$profile[$name][$uuid] = $item['profile_uuid']
$profile[$name][$uuid] = $item['profile_uuid'];
$payloaddata[$name][$version] = $profile_item_obj->json_to_html($item['payload_data']);
$profilecount[$name] = $profiles;
}
Expand Down

0 comments on commit 6b2b967

Please sign in to comment.