Merge pull request #501 from fundon/fix_suburl_undefined

bugfix, suburl defaults to empty string when suburl is undefined
release/v1.15
无闻 2014-09-25 22:51:31 -04:00
commit c8b50975bc
1 changed files with 1 additions and 1 deletions

View File

@ -616,7 +616,7 @@ function initProfile() {
}
$(document).ready(function () {
Gogs.AppSubUrl = $('head').data('suburl');
Gogs.AppSubUrl = $('head').data('suburl') || '';
initCore();
if ($('#user-profile-setting').length) {
initUserSetting();