Details
Description
When adding a module row, unchecking the "Use SSL..." checkbox will still default to using SSL.
The module needs to be updated, i.e.:
...
if (isset($row_meta->use_ssl) && $row_meta->use_ssl == 'false') {
...
to:
...
if (!isset($row_meta->use_ssl) || $row_meta->use_ssl == 'false') {
...
Activity
| Field | Original Value | New Value |
|---|---|---|
| Assignee | Tyson Phillips [ tyson ] | Jonathan Reissmueller [ jonathan ] |
Automated transition triggered when Jonathan Reissmueller created a branch in Stash -
| Status | Open [ 1 ] | In Progress [ 3 ] |
Automated transition triggered when Jonathan Reissmueller created pull request #6 in Stash -
| Status | In Progress [ 3 ] | In Review [ 5 ] |
| Resolution | Fixed [ 1 ] |
Automated transition triggered when Tyson Phillips (Inactive) merged pull request #6 in Stash -
| Status | In Review [ 5 ] | Closed [ 6 ] |