Skip to content

Commit

Permalink
Add missing semicolon.
Browse files Browse the repository at this point in the history
Fixes error 500 after updating backdrop-contrib#31
  • Loading branch information
paulrooney authored May 29, 2023
1 parent 5b177a1 commit dc9f715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion googleanalytics.module
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ function googleanalytics_field_extra_fields() {
function googleanalytics_form_user_profile_form_alter(&$form, &$form_state) {
$account = $form['#user'];
$config = config('googleanalytics.settings');
$custom = $config->get('custom')
$custom = $config->get('custom');

if (user_access('opt-in or out of tracking') && $custom != 0 && _googleanalytics_visibility_roles($account)) {
$form['googleanalytics'] = array(
Expand Down

0 comments on commit dc9f715

Please sign in to comment.