Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abdumu committed May 26, 2019
1 parent 1764bcb commit b477ec7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion admin_vbulletin_settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@
updatingInProcess = false;
$('#vbulletinform').css('opacity', '1').css('pointer-events', 'auto');
if(showMessages) {
$('#pageErrors>span').html((data.content ? data.content : (data.responseJSON ? data.responseJSON.content : '{lang.ERROR_TRY_AGAIN}')));
var tryAgainMsg = '{lang.ERROR_TRY_AGAIN}';
<IGNORE>$('#pageErrors>span').html((data.content ? data.content : (data.responseJSON ? data.responseJSON.content : tryAgainMsg)));</IGNORE>
$('#pageErrors').removeClass('d-none alert-info').addClass('alert-danger').fadeOut(4000);
}
});
Expand Down
2 changes: 1 addition & 1 deletion init.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// who wrote this plugin?
'plugin_developer' => 'kleeja.com',
// this plugin version
'plugin_version' => '1.0.1',
'plugin_version' => '1.0.2',
// explain what is this plugin, why should i use it?
'plugin_description' => [
'en' => 'VBulletin Membership Integration',
Expand Down

0 comments on commit b477ec7

Please sign in to comment.