1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 01:19:44 +01:00

#2898 fix for btn-default in user update information button

bootstrap4 support
This commit is contained in:
Jimako 2020-05-02 14:11:52 +02:00 committed by GitHub
parent a014079fd8
commit 2444e8cdf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -530,7 +530,7 @@ class user_shortcodes extends e_shortcode
return null;
}
return "<a class='btn btn-default' href='".$this->sc_user_settings_url()."'>".$label."</a>";
return "<a class='btn btn-default btn-secondary' href='".$this->sc_user_settings_url()."'>".$label."</a>";
}
@ -1015,4 +1015,4 @@ class user_shortcodes extends e_shortcode
return $this->var['user_customtitle'];
}
}
}